/*-----------------------------------------------------------------------------------
 Theme Name: Bellisima Salon
 Description: Bellisima Salon WordPress Theme.
 Version: 1.051625
 Author: Imagine It Consulting Inc.
 Theme URI: https://www.TrustImagine.com
 Author URI: https://www.TrustImagine.com

/**
 * CH01 - Browser Reset & Compliancy
 * CH02 - Main Styles & Typography
 * CH03 - Custom Styles
 * CH04 - Page Structure
 * CH05 - TopBar, Header & Navigation
 * CH06 - Content, Forms & Media
 * CH07 - Footer
 * CH08 - WordPress Styles
 * CH09 - Responsive
**/

/*----------- CH01 Browser Reset -----------*/
/* Essential Box Sizing */
*, *::before, *::after { box-sizing: border-box; }

/* Remove default margin from common elements */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }

/* Remove list styles on lists with role 'list' */
ul[role='list'], ol[role='list'] { list-style: none; }

/* Basic body settings */
body { min-height: 100vh; line-height: 1.5; text-rendering: optimizeSpeed; }

/* Responsive images */
img, picture { max-width: 100%; display: block; }

/* Inherit font styles for form elements */
input, button, textarea, select { font: inherit; }

/* Reduce motion for users with preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* Accessibility Compliancy */

/* Skip link */
#skip-link { color: white; }

/* Elements hidden but accessible to screen readers */
.element-invisible { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); overflow: hidden; height: 1px; width: 1px; }

/* Focusable elements: visibility on focus for keyboard navigation */
.element-invisible.element-focusable:focus { position: static !important; clip: auto; overflow: visible; height: auto; }

/* Screen reader text, visible on focus */
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

.screen-reader-text:focus {
  clip: auto !important; display: block; width: auto; height: auto; background-color: #f1f1f1; padding: 15px 23px 14px; border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); font-size: 0.875rem; font-weight: bold; color: #21759b; text-decoration: none;
  line-height: normal; z-index: 100000; top: 5px; left: 5px;
}

/*----------- CH02 Main Styles & Typography -----------*/

html { scroll-behavior: smooth;}

.hide-on-mobile, .hide-on-phone {display:initial} .hide-on-desktop {display:none}

:root {
  --primary-color: #000;
  --secondary-color: #000;
  --accent1-color: #000;
  --accent2-color: #000;
  --accent3-color: #000;
  --link-color: #000;
  --link-hover-color: #000;
  --body-text-color: #000;
	
 --font-size-base: 1em;
  --font-size-small: 0.875em;
  --font-size-medium: 1.125em;
  --font-size-large: 2.25em;
  --line-height-base: 1.5;
  --line-height-tight: 1.25;
	
  --spacing-1: 1%;
  --spacing-2: 2%;
  --spacing-3: 3%;
	
  --transition-duration: 0.3s;
  --transition-easing: ease;
}

:root {
	--radius-button:999px;
	--radius-card:20px;
	--radius-card-inner:16px;
	--radius-chip:999px;
	--section-spacing:40px;
}

:where(.is-layout-flow) > h1 + p,
:where(.is-layout-flow) > h2 + p,
:where(.is-layout-flow) > h3 + p,
:where(.is-layout-flow) > h4 + p,
:where(.is-layout-flow) > h5 + p,
:where(.is-layout-flow) > h6 + p {margin-top:8px !important;}

:where(.wp-block-columns.has-background) {
    padding: 2em 2.375em
}

.is-style-rounded img {border-radius:10px; box-shadow: 0px 0px 7px #424a62;}

.has-primary-color-color {color: var(--primary-color);}
.has-secondary-color-color {color: var(--secondary-color);}
.has-accent-1-color-color {color: var(--accent1-color);}
.has-accent-2-color-color {color: var(--accent2-color);}
.has-accent-3-color-color {color: var(--accent3-color);}

.has-primary-color-background-color {background-color: var(--primary-color);}
.has-secondary-color-background-color {background-color: var(--secondary-color);}
.has-accent-1-color-background-color {background-color: var(--accent1-color);}
.has-accent-2-color-background-color {background-color: var(--accent2-color);}
.has-accent-3-color-background-color {background-color: var(--accent3-color);}

/* Additional styles using the variables */
body {background: #fff; font-family: 'Open Sans', sans-serif; font-weight:400; font-size: var(--font-size-base); line-height: var(--line-height-base);color: var(--body-text-color);}

a {font-weight:bold;color: var(--link-color);transition: color var(--transition-duration) var(--transition-easing);}
a:hover {color: var(--link-hover-color);}
a:focus, :focus {outline: thin dotted !important;}
a[href^="tel:"] {white-space: nowrap}

.button:hover {color: var(--secondary-color);}

h1,h2,h3,h4,h5,h6 {font-weight: 600; line-height: 1.5; margin: 25px 0 10px;}
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {color: inherit;}
h1 a:hover,h2 a:hover,a:hover h2,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover { text-decoration: none;}
h1 {font-size: var(--font-size-large); line-height: var(--line-height-tight); margin: 10px 0 20px;}
h2 {font-size: 1.5em; margin: 10px 0 5px;}
h3 {font-size: 1.25em; margin: 10px 0 5px;}
h4 {font-size: 1.125em; margin: 10px 0 5px;}
h5 {font-size: 1.0em; margin: 10px 0 5px;}
h6 {font-size: 0.875em;}

h1, h2, h3, h4, h5, h5 {color: var(--primary-color);}

em {font-style: italic;}
strong {font-weight: 600;}
small {font-size: 80%;}
hr, .wp-block-separator {border: solid; border-width: 1px 0 0; clear: both; margin: 20px 0; height: 0;border-color: var(--accent1-color);}
.pipe {margin:0 .5%;}

/* Typography > Font Sizes */
.em-14px {font-size: 0.875em;}
.em-18px {font-size: 1.125em;}
.em-21px {font-size: 1.313em;}
.em-24px {font-size: 1.500em;}
.em-36px {font-size: 2.25em;line-height:1.125}
.em-48px {font-size: 2.75em;line-height:1.125}
.em-60px {font-size: 3.75em;line-height:1.35}
.em-72px {font-size: 4.5em;line-height:1.5}

/* Typography > Font Smoothing */
body.smooth-fonts {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}

/* Typography > Paragraph */
p {margin-bottom: var(--spacing-1);}

/* Sup/Sub */
sup, sub {vertical-align: baseline; position: relative; top: -0.4em;font-size:.75em}
sub {top: 0.4em;}

/* Text Columns */
.text-columns .wp-block-group__inner-container, .text-columns {column-count:2;column-gap:2.5rem;column-fill:balance;}
@media(max-width:600px){.text-columns .wp-block-group__inner-container, .text-columns {column-count:1;}}


.no-bottom-margin {margin-bottom:0}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
span.material-symbols-outlined {
    vertical-align: middle;
}

.reveal {opacity:0;transform:translateY(30px);transition:opacity .6s ease, transform .6s ease;}
.reveal.visible {opacity:1;transform:translateY(0);}

.site-section {padding:40px 0;}
.site-section-tight {padding:24px 0;}
.site-section-no-top {padding-top:0;}
.site-section-no-bottom {padding-bottom:0;}


/*----------- [CH03 Custom Styles] -----------*/

@font-face {
    font-family: 'Girlyna';
    src: url('/wp-content/themes/Bellisima/fonts/girlyna.woff2') format('woff2'),
        url('/wp-content/themes/Bellisima/fonts/girlyna.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
.script {font-family: 'Girlyna';-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:normal}
.header-phone { background: var(--secondary-color); border-radius: 999px; padding: 5px 15px;    margin-left: 15px;}
.header-phone a {color:#fff; text-decoration:none}
.header-phone:hover {background: var(--primary-color);}
.mobile-phone a {color:#fff}

.hero-container {margin-bottom:0; color:#fff;background: var(--primary-color);}
.hero-container h1 {color:#fff;margin:10px 0;     font-size: 4.5em;  line-height: 1;font-family: 'Girlyna';font-weight:normal}
.hero-container p {font-size:1.25em;margin-bottom:25px}
.bella-intro-video{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;}
.bella-intro-video__media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.hero-content {padding:0 4em 0 2em}

.content-grid-col {background-image: url("/wp-content/uploads/2026/01/services-bkgrd.jpg");background-size:cover}
.grid-wrapper {display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;    max-width: 80%; margin: 50px auto;} 
.grid-card {background: #ffffff; border-left: 6px solid var(--accent1-color); overflow: hidden; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); padding: 20px; text-align: center; transition: transform 0.3s ease; display: flex; flex-direction: column; justify-content: space-between; height: 100%;} 
.grid-card:hover {transform: translateY(-5px);} 
.grid-card img {    max-width: 50px;margin: 3% auto; transition: filter 0.3s ease;} 
.grid-card:hover img {filter: grayscale(100%);} 
.grid-card-title {font-size: 1.25em; margin-bottom: 10px; color: var(--primary-color);font-weight:600} 
.grid-card-description {flex-grow: 1;} /* Allows descriptions to fill space evenly */
.grid-button {margin-top: auto;} /* Ensures buttons always stay at the bottom */
.grid-card,.grid-card * {text-decoration:none;font-weight:inherit}
.grid-card {color:inherit;}


.interior-hero.alignfull{width:100vw;max-width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);box-sizing:border-box;background:var(--primary-color);}
.interior-hero__inner{width:90%;max-width:1400px;margin:0 auto;padding:30px 0;display:flex;gap:40px;align-items:stretch;box-sizing:border-box;}
.interior-hero__content{flex:1 1 50%;color:#fff;display:flex;flex-direction:column;justify-content:center;}
.interior-hero__title{margin:0 0 14px;color:#fff;font-size:2.5em;line-height:1.15;text-transform:uppercase;}
.interior-hero__copy{margin:0 0 20px;color:#fff;font-size:1.125em;}
.interior-hero__button{display:inline-block;align-self:flex-start;padding:0.75em 1.5em;background:var(--accent1-color);color:#000;border-radius:999px;text-decoration:none;}
.interior-hero__button:hover {color:var(--primary-color);background:#fff}
.interior-hero__media{flex:1 1 50%;display:flex;align-items:center;justify-content:center;min-height:280px;}
.interior-hero__img,.interior-hero__video{width:100%;height:100%;max-height:520px;object-fit:cover;border-radius:10px;display:block;box-shadow: 0px 0px 6px #d5af34;    border: 2px solid #424a62;}
@media (max-width:1023px){.interior-hero__inner{flex-direction:column;padding:40px 18px;gap:18px;}.interior-hero__content,.interior-hero__media{flex:1 1 100%;}.interior-hero__title{font-size:2em;}.interior-hero__copy{font-size:1em;}.interior-hero__media{min-height:220px;}}
@media (max-width:480px){.interior-hero__title{font-size:1.6em;}.interior-hero__button{padding:0.6em 1.1em;font-size:0.95em;}}

.highlight-text {text-align:center; max-width:80ch; font-size:1.25em; margin:0 auto}

.price-card{background:var(--accent2-color);;padding:28px;border-radius:20px;margin-top:20px}
.price-card h3{margin:0 0 6px;font-size:1.35em;}
.price-intro{margin:0 0 18px;color:#555;font-size:.95em;}
.price-list{list-style:none;margin:0;padding:0;}
.price-list li{display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--accent3-color);} .price-list li:last-child{border-bottom:none;} .price-list li::after{content:attr(data-price);position:absolute;right:0;top:10px;font-weight:600;}
h2.schedule::before{font-family:'Material Symbols Outlined';content:'calendar_add_on';font-variation-settings:'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24;display:inline-block;vertical-align:middle;margin-right:.5rem;line-height:1;color:var(--accent1-color)!important;}

.contact-info {
	max-width: 85%;}
.contact-info p{margin:0 0 10px;}
.contact-info a{color:var(--secondary-color);font-weight:500;text-decoration:none;}
.contact-info a:hover{text-decoration:underline;}
.contact-info h4,.contact-info h5{margin:20px 0 10px;font-size:1.1em;}
.contact-info ul{list-style:none;margin:0;padding:0;}
.contact-info li{display:flex;justify-content:space-between;gap:20px;padding:6px 0;border-bottom:1px solid #e2e6e9;}
.contact-info li:last-child{border-bottom:none;}

.contact-top-cols{gap:36px;align-items:flex-start;}
.contact-top-cols p{margin:0;}
.contact-top-cols .wp-block-column:last-child{display:flex;flex-direction:column;gap:10px;}
.contact-line{display:flex;align-items:center;gap:10px;margin:0;}
.contact-line a{color:inherit;text-decoration:none;font-weight:600;}.contact-top-cols{display:flex;flex-direction:column;gap:20px;}
.contact-line a:hover{text-decoration:underline;}
.contact-top-cols + .wp-block-buttons{margin-top:14px;}
.contact-phone,.contact-email{display:flex;align-items:center;gap:10px;font-weight:600;}
.contact-phone::before,.contact-email::before{font-family:"Material Symbols Outlined";font-size:22px;line-height:1;color:var(--secondary-color);font-variation-settings:"FILL" 1,"wght" 400,"GRAD" 0,"opsz" 24;}
.contact-phone::before{content:"call";}
.contact-email::before{content:"mail";}

.map-embed{border-radius:14px;overflow:hidden;box-shadow:0 10px 24px rgba(0,0,0,.08);}
.map-embed iframe{display:block;}



/*----------- [CH04 Page Structure] -----------*/
#outer-wrap {overflow: hidden;}
.container { width:90%; max-width: 1440px; /* or 1400px based on preference */
    margin: 0 auto !important; /* Center horizontally */}
.max-80 {max-width: 80ch;}
.container.rounded, .container .rounded {border-radius:20px}
.content-area {width: 100%; max-width: none !important;min-height: 500px;}

/* Default: no style = container width (already handled by .container) */

/* ADA Width: narrower reading column */
#content .is-style-ada-width {max-width:60rem;margin-left:auto;margin-right:auto;}
#content .is-style-ada-width-left{max-width:60rem;margin-left:0;margin-right:auto;text-align:left;}


#content .is-style-two-col-flow{column-count:2;column-gap:60px;}
#content .is-style-two-col-flow>*{break-inside:avoid;}
#content .is-style-two-col-flow h2,#content .is-style-two-col-flow h3{break-after:avoid-column;}
@media (max-width: 900px){#content .is-style-two-col-flow{column-count:1;column-gap:0;}}


/* Full width: true edge-to-edge */
#content .alignfull {width:100vw;max-width:100vw;margin-left:50%;margin-right:50%;transform:translateX(-50%);}

/* Optional: make alignwide behave like default container (no extra width) */
#content .alignwide {max-width:100%;width:100%;margin-left:auto;margin-right:auto;}

#content-wrap-sr, #content-wrap-sl  {display: flex;flex-wrap: wrap; column-gap:30px}
.content-area { flex: 3;}
.sidebar-right { flex: 1;}
.sidebar-left { flex: 1; order: -1; /* Place the left sidebar before the content area */}

/* New Flex Container for Blog Page */
.blog-content-wrap {display: flex; gap: 20px; /* Adjust the gap between content and sidebar */}

/* Adjust the width ratios for content and sidebar */
.blog-content-area {flex: 0 0 65%; /* 65% width */max-width: 65%;padding: 15px; /* Add inner padding */}
.blog-sidebar {flex: 0 0 35%; /* 35% width */ max-width: 35%;}
.blog-sidebar .widget { margin-bottom: 20px; padding: 15px; background: var(--accent1-color); border: 1px solid var(--secondary-color);}


/*----------- [CH05 - TopBar, Header & Navigation] -----------*/

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {position: fixed !important;top: 0;width: 100%; border-bottom:2px solid #eee;}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .site-main {padding-top: 110px;}

#top-bar-wrap {display:none;}

#site-header {padding: 0 !important; position: relative; z-index: 50;} 
#site-header-full-width .container {width: 100% !important;}
#site-header-inner {display: flex;justify-content: space-between;align-items: center;padding: 10px 20px; /* Add padding for spacing */}

.header-block {flex:1 1 50%}

/* Header > Main > Logo */
#site-logo {flex: 0 1 auto; /* Prevent logo from shrinking */}
#site-logo a {height: 100%; padding: 0; margin: 0; text-decoration: none;}
#site-logo a:hover {text-decoration: none;}
#site-logo img {display: inline; vertical-align: middle; max-height: 100%; max-width: 100%;width:auto}

/* Alert Wrap */
#alert-wrap {background: var(--accent1-color); color: var(--primary-color); padding: 1.25%; text-align:center; font-size: 1em; border-bottom: solid 3px var(--accent1-color);}
#alert-wrap p {margin:0px;display:inline}
#alert-wrap .fa {margin-right:5px}
#alert-wrap a {color: var(--secondary-color); text-decoration: underline;}
#alert-wrap strong {font-size:1.125em}

/*----------- [Navigation] -----------*/
/* Main Navigation */
#site-navigation { display:flex; justify-content:flex-end; align-items:center; width:100%; }
#site-navigation .nav-menu { display:flex; gap:.25em; list-style:none; padding:0; margin:0; flex-wrap:wrap; justify-content:center; align-items:center; }
#site-navigation .nav-menu li { position:relative; }
#site-navigation .nav-menu li a { color:var(--primary-color); font-size:1.1em; text-decoration:none; text-transform:uppercase; padding:.5em 1em;font-weight:400 }
#site-navigation .nav-menu li a:hover { color:var(--primary-color); background-color:var(--accent2-color); border-radius:20px; }

/* Dropdown Menu */
/* Dropdowns are hidden initially but can transition */
#site-navigation .nav-menu ul { display:block; position:absolute; top:calc(100% + .25em); left:0; padding:0; margin:0; background:var(--accent2-color); list-style:none; min-width:260px; z-index:10; color:var(--primary-color); opacity:0; visibility:hidden; max-height:0; overflow:hidden; transition:opacity .4s ease-in-out, max-height .5s ease-in-out, visibility .5s ease-in-out; }
#site-navigation .nav-menu li:hover > ul { opacity:1; visibility:visible; max-height:500px; }
/* Keep top-level item highlighted while hovering its submenu */
#site-navigation .nav-menu > li:hover > a,
#site-navigation .nav-menu > li:focus-within > a { background-color:var(--accent2-color); color:var(--primary-color); }
#site-navigation .nav-menu > li.menu-item-has-children:hover > a,
#site-navigation .nav-menu > li.menu-item-has-children:focus-within > a { border-radius:20px 20px 0 0; }

/* Dropdown Links */
#site-navigation .nav-menu ul li { display:block; }
#site-navigation .nav-menu ul li a { padding:.5em 1em; color:var(--primary-color); display:block; transition:background-color .3s ease, color .3s ease; font-size:.9em; }
#site-navigation .nav-menu ul li a:hover { background-color:#f6f7f9; color:var(--secondary-color);border-radius:0px; }

/* Multi-level Dropdown */
#site-navigation .nav-menu ul ul { position:relative; top:0; left:0; margin-top:.25em; background:var(--accent2-color); box-shadow:none; }
#site-navigation .nav-menu ul ul li a { padding:.5em 1em; color:var(--primary-color); display:block; }
#site-navigation .nav-menu ul ul li a:hover { background-color:var(--primary-color); color:#fff; }
#site-navigation .nav-menu li:hover > ul ul { display:block; }


/*----------- [CH06 - Content, Forms & Media] -----------*/

/*----------- [Page Title] -----------*/
.page-header {background: var(--accent2-color);  margin: 10px 0 20px; padding: 5px 0 0;  position: relative;}
.page-header .container {position: relative;}
.header-title {display: inline-block; font-size: 1.75em; line-height: 1em; font-weight: normal; font-weight: 400;}
.subheading {margin: 0; color: var(--secondary-color);}

/*----------- [Breadcrumbs] -----------*/
#breadcrumbs {font-size:.825em; padding:5px 0 0 }

/*----------- [Contact Forms] -----------*/
div.wpcf7 .wpcf7-not-valid {
    border-color: var(--accent1-color) !important;
    color: var(--accent1-color) !important;
}
span.wpcf7-not-valid-tip {display: none !important;}
div.wpcf7 input, div.wpcf7 textarea {max-width: 100%;}
div.wpcf7-validation-errors {margin: 20px 0 0; padding: 10px; text-align: center; font-weight: 400; font-size: 0.923em; color: var(--accent1-color); background: var(--accent1-color); border: 1px solid var(--accent1-color);}
div.wpcf7 .wpcf7-mail-sent-ok {margin: 10px 0 0; padding: 10px; text-align: center; background: var(--accent1-color); border: 1px solid var(--secondary-color); color: var(--primary-color); font-weight: normal;}
div.wpcf7-mail-sent-ng {margin: 0; padding: 10px; background: #ffe9e9; color: #d04544; border: 1px solid #e7a9a9;}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output { background: #e00000;color: #fff; margin: 10px 0; border: none; padding: 0.75em;}

/*fixes */
button, input, select, textarea {font-size: 100%; margin: 0; vertical-align: baseline;font-family: inherit;}

/* turn off number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none; margin: 0;}

/* reset search styling */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {display: none;}

/* input normal */
input[type="text"],
input[type="password"], input[type=file],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea {color: #757575; background: #f7f7f7; padding: .6em .6em; display: inline-block; font-size: 1em; transition: .15s linear border; -webkit-appearance: none; max-width: 100%; border: 1px solid #e4e4e4; font-family: inherit;margin-top: 5px;}

/* textarea */
textarea {width: 100%; max-width: 100%; -webkit-appearance: none; font-family: inherit;margin-top: 5px;}

/* remove chrome yellow autofill */
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px #f7f7f7 inset;}

/* placeholder color */
::-webkit-input-placeholder {color: inherit;}
:-moz-placeholder {color: inherit;}
::-moz-placeholder {color: inherit;}
:-ms-input-placeholder {color: inherit;}

.contact-form{background:var(--accent2-color); padding: 28px;border-radius: 14px;}
.contact-form .wpcf7{margin:0;}
.contact-form form{margin:0;max-width:520px;   }
.contact-form br {display:none}
.contact-form p{margin:0 0 12px;}
.contact-form label{display:block;font-weight:600;margin:0 0 6px;color:#333;}
.contact-form .wpcf7-form-control-wrap{display:block;}
.contact-form input[type="text"],.contact-form input[type="email"],.contact-form input[type="tel"],.contact-form input[type="url"],.contact-form input[type="number"],.contact-form input[type="date"],.contact-form select,.contact-form textarea{width:100%;max-width:100%;padding:12px 14px;border:1px solid #d8dde3;border-radius:10px;background:#fff;font-size:16px;line-height:1.3;color:#333;box-shadow:0 1px 0 rgba(0,0,0,.02);transition:border-color .15s ease,box-shadow .15s ease;}
.contact-form textarea{height:180px;resize:vertical;}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:#7a8087;opacity:1;}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{outline:none;border-color:var(--secondary-color);box-shadow:0 0 0 3px rgba(213,175,52,.25);}
.contact-form select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,#666 50%),linear-gradient(135deg,#666 50%,transparent 50%);background-position:calc(100% - 18px) 50%,calc(100% - 13px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:38px;}
.contact-form .wpcf7-not-valid{border-color:#c62828;box-shadow:0 0 0 3px rgba(198,40,40,.15);}
.contact-form .wpcf7-not-valid-tip{font-size:.9em;margin-top:6px;color:#c62828;}
.contact-form .wpcf7-response-output{margin:14px 0 0;padding:12px 14px;border-radius:10px;font-size:.95em;}
.contact-form .wpcf7-response-output.wpcf7-validation-errors,.contact-form .wpcf7-response-output.wpcf7-acceptance-missing{border:1px solid #c62828;background:rgba(198,40,40,.08);color:#7a1c1c;}
.contact-form .wpcf7-response-output.wpcf7-mail-sent-ok{border:1px solid #2e7d32;background:rgba(46,125,50,.10);color:#1b5e20;}
.contact-form input[type="submit"]{appearance:none;border:2px solid rgba(0,0,0,.08);background:var(--accent1-color);color:#111;padding:12px 22px;border-radius:999px;font-weight:700;cursor:pointer;line-height:1;transition:transform .08s ease,filter .15s ease,box-shadow .15s ease;margin:10px 0}
.contact-form input[type="submit"]:hover{filter:brightness(.98);}
.contact-form input[type="submit"]:active{transform:translateY(1px);}
.contact-form input[type="submit"]:focus{outline:none;box-shadow:0 0 0 3px rgba(213,175,52,.25),0 10px 18px rgba(0,0,0,.12);}
.contact-form .wpcf7-spinner{margin-left:10px;vertical-align:middle;}


/* Google Material Icons */
.material-icons {
  font-size: 1.25em;
  padding-right: 5px;
  color: var(--accent1-color);
}

/* Responsive Table */
table {
  width: 100%;
  border-collapse: collapse;
}
table caption { font-size: 1.5em; margin: .5em 0 .75em;}
table tr { background: var(--accent1-color); border: 1px solid var(--accent1-color); padding: .35em;}
table th,table td {padding: .625em;text-align: center;}
table th {font-size: .85em;letter-spacing: .1em;text-transform: uppercase;background: var(--secondary-color); color: var(--primary-color);}

/*----------- [CH07 Footer] -----------*/

.site-footer {background: var(--primary-color); color: #fff; margin-top:25px;}
.site-footer .footer-center {padding: 25px 0;}
.site-footer .wp-block-columns.is-layout-flex{margin-bottom:0;}
.single-col-footer .col {margin-left: 0; width: 100%; margin-right: 0;}
.site-footer ul {margin: 0;}
.footer-logo {margin-bottom:15px}
.salon-hours {line-height: 2; border-left: 1px solid var(--accent1-color);padding-left: 25px;}
.footer-nav a {color:#fff; font-weight:400;text-decoration:none}
.join-list {background: var(--accent3-color);text-align:center}
.wp-block-group.socials .wp-block-group__inner-container {display: flex;gap: 20px;}
.facebook-icon img, .insta-icon img { max-width: 30px; margin: 15px 0;}

/* Footer > Bottom */
#footer-bottom {min-height: 30px; color: #222; font-size: 0.75em;background:#fff}
#footer-bottom-inner {position: relative;}
#footer-bottom p:last-child {margin: 0;}
#footer-bottom > .container {padding-top: 10px; padding-bottom: 10px;}

#copyright {display: flex; flex-wrap: wrap; justify-content: space-between;}
.copy-left, .copy-right { flex: 1 1 auto;}
.copy-right {text-align:right}

/* Footer > Social */
#footer-bottom-menu {position: absolute; right: 0; top: 50%; margin-top: -20px; height: 40px; line-height: 40px;}
#footer-bottom-menu ul {list-style: none; margin: 0;}
#footer-bottom-menu ul li {float: left; margin-left: 20px;}
#footer-bottom-menu ul li:first-child {margin-left: 0;}
#footer-bottom-menu ul li .fa {margin-right: 7px;}

/*----------- [Commons] -----------*/
.no-wrap {white-space:nowrap}

/* Commons > Displays */
.block {display: block;}
.inline-block {display: block; display: inline-block;}
.inline {display: inline;}

/* Commons > Margins */
.no-margin {margin: 0;}
.no-left-margin {margin-left: 0;}
.no-right-margin {margin-right: 0;}
.remove-last-p-margin p:last-child {margin: 0;}
.margin-1 {margin: 1%;}
.margin-2 {margin: 2%;}
.margin-3 {margin: 3%;}
.margin-1h {margin: 0 1% !important;}
.margin-2h {margin: 0 2% !important;}
.margin-3h {margin: 0 3% !important;}
.margin-4h {margin: 0 4% !important;}
.margin-5h {margin: 0 5% !important;}
.margin-10h {margin: 0 10% !important;}
.margin-1v {margin: 1% 0 !important;}
.margin-2v {margin: 2% 0 !important;}
.margin-3v {margin: 3% 0 !important;}
.margin-4v {margin: 4% 0 !important;}
.margin-5v {margin: 5% 0 !important;}

/* Commons > Paddings */
.no-padding {padding: 0;}
.no-left-padding {padding-left: 0;}
.no-right-padding {padding-right: 0;}
.padding-1 {padding: 1%;}
.padding-2 {padding: 2%;}
.padding-3 {padding: 3%;}
.padding-1h {padding: 0 1%;}
.padding-2h {padding: 0 2%;}
.padding-3h {padding: 0 3%;}
.padding-4h {padding: 0 4%;}
.padding-5h {padding: 0 5%;} 
.padding-1v {padding: 1% 0;}
.padding-2v {padding: 2% 0;}
.padding-3v {padding: 3% 0;}
.padding-4v {padding: 4% 0;}
.padding-5v {padding: 5% 0;}

/* Commons > Border Radius */
.semi-rounded {border-radius: 4px;}
.rounded {border-radius: 10px;}
.round {border-radius: 50%;}


/*----------- [Theme Buttons] -----------*/
.theme-button, input[type="submit"], button, .wp-block-button__link {padding: 10px 25px;
    background: var(--accent1-color);border-radius:var(--radius-button) !important;
    color:var(--body-text-color);}
.theme-button:hover, input[type="submit"]:hover, button:hover, .wp-block-button__link:hover {
    color: #fff; background:var(--body-text-color) ;}
.theme-button:active,input[type="submit"]:active,button:active, .wp-block-button__link:active {color: #fff; } 

.dark .wp-block-button__link  {background:var(--primary-color);border:1px solid var(--accent1-color); color:#fff}
.dark .wp-block-button__link:hover {background:var(--accent1-color);border:1px solid var(--primary-color); color:var(--secondary-color)}

/* readmore link edits */
.readmore-link-wrap {display: block;}
.search-entry .readmore-link-wrap {margin-top: 10px;}
.readmore-link {display: block; float: left;}

/* make some buttons smaller */
.readmore-link {font-size: 0.846em;}

/*sizes & alignments*/
.theme-button.small {font-size: 0.923em;}
.theme-button.medium {font-size: 1.077em;}
.theme-button.large {font-size: 1.385em;}
.theme-button.rounded {border-radius:5px}

/*----------- [Images] -----------*/
img {max-width: 100%; height: auto; vertical-align: bottom;}

.vertical-align {vertical-align:middle}

/* Commons > Image Classes */
.image-shadow {background: #fff; box-shadow: 0px 1px 3px rgba(0,0,0,0.1);}
.image-border {background: #fff; padding: 4px; border: 1px solid #ddd;}
.image-rounded {background: #fff; border-radius: 3px;}
.image-circle {background: #fff; border-radius: 99px;}
.image-hover:hover {opacity: 0.8; -webkit-opacity: 0.8; -moz-opacity: 0.8;}
.image-fancy {background: #fff; padding: 4px; border: 1px solid #ddd; -moz-border-radius: 99px; -webkit-border-radius: 99px; border-radius: 99px;}
.image-fancy:hover {opacity: 0.8; -webkit-opacity: 0.8; -moz-opacity: 0.8; box-shadow: 0px 1px 5px rgba(0,0,0,0.2);}

/* Responsive Videos and iFrames */
.responsive-video-wrap,
.responsive-audio-wrap {position: relative; padding-bottom: 56.25%; padding-top: 25px; height: 0;}
.responsive-video-wrap  iframe,
.responsive-audio-wrap iframe,
.responsive-video-wrap object,
.responsive-audio-wrap oject,
.responsive-video-wrap embed,
.responsive-audio-wrap embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.entry .entry-video {margin-bottom: 20px;}
.entry iframe, .entry embed {max-width: 100%;}

/*----------- [WordPress Styles] -----------*/
.aligncenter {display: block; margin: 0 auto;}
.wp-caption {text-align: center; max-width: 100%; border: 1px solid #eee; background-color: #fff; padding: 8px;}
.wp-caption img {display: block; margin: 0 auto; padding: 0; border: 0 none;}
.wp-caption p.wp-caption-text {font-size: 0.875em; padding: 10px 0 0; margin: 0; text-align: center;}
.wp-caption.alignnone {margin-bottom: 20px;}
.wp-smiley {margin: 0; max-height: 1em;}
#img-attch-page {text-align: center; overflow: hidden;}
#img-attch-page img {display: inline-block; margin: 0 auto; max-width: 100%; margin-bottom: 20px;}
.post-password-form label,
.post-password-form input {display: block; float: none;}
.post-password-form input {margin-top: 10px;}
.post-password-form input[type="password"] {width: 200px; max-width: 100%;}
.post-password-form label {font-weight: bold; font-weight: 600; color: #000;}
form.login {padding: 20px; border: 1px solid #eee;}
form.login .lost_password {margin-left: 20px; display: inline-block;}
.wpstats {display: none;}

/* 404 Error Page */
.error404-content {text-align: center; margin: 50px 0; font-size: 1.077em;}
.error404-content h1 {font-size: 3.231em; margin: 0 0 10px;}

/*----------- [Entries (Global Styles)] -----------*/

/* Entries > Title */
.entry-title {display: block; font-size: 1.077em; margin: 0 0 5px; font-weight: bold; font-weight: 600; color: #000;}
.entry-title a {color: inherit;}
.entry-title a:hover {text-decoration: none;}
.single-post-title {font-size: 1.846em; margin: 0 0 10px; font-weight: 400;}

/*----------- [Post Meta] -----------*/
/* Meta Styling */
ul.meta {
    display: flex; /* Use Flexbox for alignment */
    gap: 15px; /* Adds spacing between meta items */
    align-items: center; /* Vertically center-aligns icons and text */
    list-style: none;
    margin: 0 0 20px !important;
    padding: 0;
}

.meta, .entry .meta {
    font-size: 0.9em; /* Adjust font size slightly for a cleaner look */
    color: var(--body-text-color); /* Use variable for text color */
}

/* Meta Items */
.meta li, .entry .meta li {
    display: flex; /* Flex container for each meta item */
    align-items: center; /* Vertically centers icon and text */
    margin: 0; /* Reset margin */
}

/* Adjust icon spacing */
.meta li .material-icons {
    font-size: 1.1em; /* Adjust icon size */
    margin-right: 5px; /* Space between icon and text */
    color: var(--accent1-color); /* Use color variable for icon */
}

/* Last item adjustment (Flexbox takes care of spacing) */
.meta li:last-child {
    margin-right: 0;
}

/* Meta links */
.meta a {
    color: var(--body-text-color); /* Use variable for link color */
    text-decoration: none;
}

.meta a:hover {
    color: var(--accent1-color); /* Use accent color for hover */
    text-decoration: none;
}

/* Time Element */
.meta time {
    display: inline;
}


/*----------- [Blog] -----------*/
.blog-entry-readmore {
    margin-top: 15px; /* Add spacing above */
    text-align: left; /* Align to the left */
}

.blog-entry-readmore a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.875em;
    border-radius: 5px;
    transition: background var(--transition-duration) var(--transition-easing);
}

.blog-entry-readmore a:hover {
    background: var(--secondary-color);
    color: var(--accent1-color);
}

#content .social-share-buttons li:before {content: none;}
.social-share-buttons.position-horizontal li a {border: none;}
.prev-article {float:left;margin-left:15px;width:40%;}
.next-article {float:right; text-align:right;margin-right:15px;width:40%;}
.blog-entry a.blog-entry-media-link {display: block; margin: 0 auto;}
.blog-entry-media img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.single-post .blog-entry.grid-entry-style.format-quote {width: 100%; margin: 0;}
.format-quote {overflow: hidden;}
.blog-entry-readmore span.readmore-rarr {margin-left: 7px;}
.blog-entry .social-share-title {display: none;}
.blog-entry-excerpt p:last-child {margin: 0;}

.widget_categories h3, .widget_recent_entries h3 {border-bottom: 1px solid; text-align:left;}
.widget_categories li:after, .widget_recent_entries li:after {content: '\f054'; font-family: 'Font Awesome\ 5 Free';font-weight: 900; float: right; color: #86c232;}
#recent-posts-2 ul li a { display: contents;}
#recent-posts-2 ul li { margin: 2% 0;}

/*----------- [Blog Entry] -----------*/
.blog-entry-title {font-size: 1.846em; margin: 0 0 10px; font-weight: 400;}
.blog-entry-media, .blog-entry-excerpt, .blog-entry-readmore {margin-bottom: 20px;}

/* Blog Entry > Quote Format */
.blog-entry.format-quote .post-quote-entry-inner {position: relative; display: block; padding: 20px 30px; font-size: 1.231em; z-index: 2; background: #f7f7f7;}
.blog-entry.format-quote p:last-child {margin: 0;}
.blog-entry.format-quote .quote-entry-author {margin-top: 15px; font-size: 0.923em; font-weight: 300; text-decoration: underline;}
.blog-entry.format-quote .fa-quote-right {position: absolute; right: 15px; bottom: 15px; color: #999; font-size: 60px; display: block; z-index: 1; opacity: 0.15;}


/*----------- [Single Blog Posts] -----------*/
.single-post .entry {margin-bottom: 40px;}

/* Blog Single > Meta */
.content-full-screen .meta {display: none;}
.single-post .meta {margin: 0 0 20px;}
.single-post .meta.meta-with-title {border: none; padding: 0;}

/* Blog Single > Thumbnail */
#post-media {display: block; position: relative; margin-bottom: 20px;}
#post-media img {display: block; margin: 0 auto; width: 100%;}
.post-media-caption {position: absolute; bottom: 0; left: 0; width: 100%; padding: 10px 15px; background: #000; background: rgba(0,0,0,0.75); color: #fff; font-size: 0.923em; font-weight: normal; text-align: center;}
.post-media-caption p {color: #fff;}
.post-media-caption a {color: #fff; text-decoration: underline;}
.post-media-caption p:last-child {margin: 0;}

/* Blog Single > Tags */
.post-tags {margin-bottom: 40px;}

/* Blog Single > Related Posts */
.related-posts {margin-bottom: 20px; overflow: hidden;}
.related-posts li {margin-bottom: 20px;}
.related-posts li:last-child,
.related-posts li p:last-child {margin-bottom: 0;}
.related-post-thumb {display: block;}
.related-post-thumb img {display: block; width: 100%;}
.related-post-title {margin: 0 0 5px; display: block;}
.related-post-content {padding: 10px; background: #f7f7f7; border: 1px solid #eee;}
.related-post-excerpt {font-size: 0.923em; line-height: 1.7em;}
.related-post-excerpt p:last-child {margin: 0;}

/* Blog Single > Quote */
.single .format-quote {position: relative; display: block; padding: 20px 30px; font-size: 1.231em; z-index: 2; background: #f7f7f7;}
.single .format-quote p:last-child {margin: 0;}
.single .format-quote .quote-entry-author {margin-top: 15px; font-size: 0.923em; font-weight: 300; text-decoration: underline;}
.single .format-quote .fa-quote-right {position: absolute; right: 15px; bottom: 15px; font-size: 60px; display: block; z-index: 1; opacity: 0.1;}


/*----------- [Social Sharing] -----------*/
/* Social Sharing */
.social-share-wrap { margin: 3% 0;width: max-content;}
.social-share.position-horizontal {display:inline; list-style:none !important;margin: 0 !important;}
.social-share.position-horizontal li {float: left; margin: 0 5px 5px 0; border: none; margin: -3px 0 0 12px;}
.social-share.position-horizontal .svg-inline--fa {margin-right:5px}

.social-share li a {height: 35px; line-height: 35px; text-align: center;transition: all .15s ease-in-out;text-decoration: none;}

.social-share li a.share-x {background: #000; color:#fff; padding:0px 15px 0 20px; background-image:url("/wp-content/uploads/2024/09/x_logo_white_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 15px; width:auto;display:inline-block;}
.social-share li a.share-x:hover{background:#f3f3f3;background-image:url("/wp-content/uploads/2024/09/x_logo_black_18.png");background-repeat: no-repeat; background-position: center left 10px;background-size: 15px; color:#000;}

.social-share li a.share-facebook {background: #1877f2; color:#fff; padding:0px 15px 0 25px; background-image:url("/wp-content/uploads/2024/09/fb_logo_white_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 17px; width:auto;display:inline-block;}
.social-share li a.share-facebook:hover {background: #f3f3f3;color: #1877f2;background-image:url("/wp-content/uploads/2024/09/fb_logo_blue_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 17px; width:auto;display:inline-block;}

.social-share li a.share-pinterest {background: #cb2027; color:#fff; padding:0px 15px 0 25px; background-image:url("/wp-content/uploads/2024/09/p_badge_white_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 15px; width:auto;display:inline-block;}
.social-share li a.share-pinterest:hover {background: #f3f3f3;color: #cb2027;background-image:url("/wp-content/uploads/2024/09/p_badge_red_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 15px; width:auto;display:inline-block;}

.social-share li a.share-linkedin {background: #4875B4; color:#fff; padding:0px 15px 0 30px; background-image:url("/wp-content/uploads/2024/09/in_logo_white_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 17px; width:auto;display:inline-block;}
.social-share li a.share-linkedin:hover {background: #f3f3f3;color: #4875B4;background-image:url("/wp-content/uploads/2024/09/in_logo_blue_18.png"); background-repeat: no-repeat; background-position: center left 10px;background-size: 17px; width:auto;display:inline-block;}

/*----------- [Pagination] -----------*/
.pagination {clear:both;padding:20px 0;position:relative;font-size:11px;line-height:13px;}
.pagination span, .pagination a {display:block;float:left;margin: 2px 2px 2px 0;padding:6px 9px 5px 9px;text-decoration:none;width:auto;color:#fff;background: #888;}
.pagination a:hover{color:#fff;background: #444;}
.pagination .current{padding:6px 9px 5px 9px;background: #000;color:#fff;}

/*next/previous posts*/
.post-pagination {border-top: 1px solid #eee; padding: 30px 0; color: #888;}
.post-pagination .post-prev {float: left; width: 48%;}
.post-pagination .post-prev span {margin-right: 5px}
.post-pagination .post-next {float: right; width: 48%; text-align: right;}
.post-pagination .post-next span {margin-left: 5px;}
.post-pagination a {color: #888;}
.content-full-screen .post-pagination {display: none;}

/*standard*/
ul.page-numbers {list-style: none; margin: 10px 0 0;}
ul.page-numbers li {display: block; float: left; margin: 0 4px 4px 0; text-align: center;}
.page-numbers a,
.page-numbers span {line-height: 1; display: block; padding: 0.4em 0.7em; font-size: 0.923em; text-decoration: none; font-weight: normal; font-weight: 400; cursor: pointer; border: 1px solid #ddd; color: #888; transition: all .15s ease-in-out;}
.page-numbers a span {padding: 0;}
.page-numbers a:hover,
.page-numbers.current,
.page-numbers.current:hover {color: #000; background: #f7f7f7; text-decoration: none;}
.page-numbers:hover {text-decoration: none;}

/*----------- [Widgets] -----------*/
.widget ul {list-style: none !important; margin: 0 !important;}
.widget_product_categories ul ul li:last-child {border-bottom: none; padding-bottom: 0;}
.widget_product_categories ul ul li {padding-left: 15px}

/* Widgets > Recent Posts */
.widget_recent_entries .post-date {display: block; font-size: 0.846em; color: #757575; margin: 5px 0 0;}

/* Widgets > Recent Posts */
.recent-comments-widget li {position: relative; padding-left: 70px; display: block; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; min-height: 62px;}
.recent-comments-widget li:first-child {border-top: 1px solid #eee; padding-top: 20px;}
.recent-comments-widget li a {display: block}
.recent-comments-widget li a.avatar {width: 50px; height: 50px; position: absolute; left: 0; top: 0; display: block; padding: 3px; border: 1px solid #e4e4e4;}
.recent-comments-widget li:first-child a.avatar {top: 20px}
.site-footer .recent-comments-widget li a.avatar {border-color: #333}
.recent-comments-widget strong {color: #000}
.site-footer .recent-comments-widget strong {color: #fff}

/*----------- [Search] -----------*/

/*search input*/
.searchform {position: relative}
.menu-search-text {display: none;}
.searchform input {width: 100%; background-repeat: no-repeat; background-position: right center; padding: .8em 30px .8em .8em;}
.searchform .searchform-submit {position: absolute; top: 50%; right: 15px; height: 20px; line-height: 20px; margin: -10px 0 0; background: none; padding: 0; border: 0; color: #000; font-size: 11px; opacity: 0.5;}
#footer .searchform input {background-color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.06); border: none; padding: .8em;}

/*search results page*/
#search-no-results {font-size: 1.231em; margin-bottom: 20px;}

/*entries*/
.search-entry {position: relative; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; padding-left: 130px; min-height: 120px;}
.search-entry-no-thumb {padding-left: 0; min-height: 0;}
.search-entry h2 {font-size: 1.313em; margin: 0 0 10px; font-weight: bold; font-weight: 600;}
.search-entry-thumb {position: absolute; top: 0; left: 0; width: 100px; padding: 4px; border: 1px solid #eee;}
.search-entry-thumb img {display: block; width: 100%;}
.search-entry-thumb img:hover {opacity: 0.8}
.search-entry-text p:last-child {margin: 0}

/*search site overlay - modal*/
#searchform-overlay {display: none; width: 350px; top: 120px; -webkit-transform: scale(0.5); -moz-transform: scale(0.5); -ms-transform: scale(0.5); transform: scale(0.5); -webkit-transition: transform 0.4s; -moz-transition: transform 0.4s; transition: transform 0.4s;}
#searchform-overlay.active {-webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1);}
#searchform-overlay-title {font-size: 2.154em; margin: 0 0 20px; font-weight: 400; color: #fff; text-align: center; text-transform: capitalize;}
#searchform-overlay input {font-size: 1.077em; background: #fff; -webkit-appearance: none !important; width: 100%; border: 0; padding: 0; padding-right: 40px; padding-left: 20px; height: 45px; color: #000; font-weight: 400; border-radius: 3px; box-shadow: 0 0 4px rgba(0,0,0,0.7);}
#searchform-overlay .searchform-submit {font-size: 18px;}
#searchform-overlay .searchform-submit:hover {opacity: 1;}

/*header replace*/
#searchform-header-replace {position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #fff; visibility: hidden; opacity: 0; transition: all 0.25s ease-in-out;}
#searchform-header-replace form {height: 100%; width: 100%;}
#searchform-header-replace input {height: 100%; width: 100%; border: 0; -webkit-appearance: none;  -moz-border-radius: none; -webkit-border-radius: none; border-radius: 0; font-size: 32px; text-transform: uppercase; color: #bbb; background: none;}
#searchform-header-replace-close {position: absolute; right: 0; top: 50%; margin-top: -20px; height: 40px; line-height: 40px; font-size: 26px; color: #bbb; cursor: pointer;}
#searchform-header-replace-close:hover {color: #000}
body.boxed-main-layout #searchform-header-replace input {padding: 0 30px}
body.boxed-main-layout #searchform-header-replace-close {right: 30px}

/*display search on click*/
#searchform-dropdown.show,
#searchform-header-replace.show {visibility: visible; opacity: 1;}


/*----------- [Print Styles] -----------*/
@media print { 
	#sidebar,
	#footer,
	#footer-bottom,
	#top-bar-wrap,
	#site-navigation-wrap,
	.toggle-bar-btn,
	.post-pagination,
	.related.products,
	.product form.cart { display: none }
	.container { width: 95%; margin:0 auto; }
}

/*----------- [CH09 Responsive] -----------*/

@media screen and (max-width: 1280px) {
#site-navigation .nav-menu {gap:0}
#site-navigation .nav-menu li a {padding: 0.5em 0.75em}
#nav-logo img {max-width: 100px;}
#site-logo img {width: 100%;max-width: 185px;}
	.hero-container p {font-size:1em}
.entry .wp-block-image .alignright {max-width:50%; }
.entry .wp-block-image img {margin:0 auto}
	.contact-top-cols{display:flex;flex-direction:column;gap:20px;}
}

@media screen and (max-width: 1080px) {
	.footer-logo.em-60px {    font-size: 3em;}
}

@media screen and (max-width: 1023px) {
#top-bar-wrap {display:block;background:var(--primary-color)}
#top-bar {position: relative; min-height: 50px; padding: 15px 0;display:flex; flex-wrap:wrap; justify-content:space-between}
#site-logo img {width: 100%;max-width: 200px;}
#site-navigation-wrap {display:none;}
	
	.hero-container.wp-block-columns{flex-direction:column!important;flex-wrap:nowrap!important;}
	.hero-container.wp-block-columns>.wp-block-column{flex:0 0 100%!important;width:100%!important;max-width:100%!important;}
	.hero-container .hero-content{order:1;padding:1em 5em 0 5em;}
	.hero-container .hero-video{order:2;}
.hero-container .bella-intro-video{aspect-ratio:3/2!important;height:auto!important;max-height:480px;}
	.grid-wrapper {grid-template-columns: repeat(2, 1fr);}
		.footer-nav {display:none}
	.footer-branding {padding:25px 0}
	.footer-center {flex-basis:35% !important}
	.footer-image {flex-basis:35% !important}
}
@media screen and (max-width: 900px) {
#footer .wp-block-columns {flex-direction: column; align-items: center;}
#footer .wp-block-column {flex-basis: 100%; text-align: center; padding-bottom:0}
.salon-hours {border-left:none; padding-left:0}
.facebook-icon {text-align:center;margin:0 auto;}
.facebook-icon img {margin:0 auto;}
	.contact-form{max-width:100%;}
	.contact-top-cols{gap:16px;}
	.contact-info {max-width: 100%;}
	.socials .wp-block-group__inner-container {display: inline-flex !important;justify-content: space-around;align-items: center;}
	.hero-container .bella-intro-video{aspect-ratio:4/3!important;max-height:350px;}

}

@media screen and (max-width: 768px) {
#site-header-inner {flex-direction: column;align-items: center; }
nav ul { flex-direction: column; /* Stack menu items */gap: 10px;}
.blog-content-wrap {flex-direction: column; /* Stack content and sidebar */ }
.blog-content-area, .blog-sidebar { max-width: 100%;flex: 0 0 100%;}
#content-wrap-sl, #content-wrap-sr {flex-direction: column;}
.content-area {float: none;max-width: 100% !important;width: 100%;}
.copy-left, .copy-right {text-align:center}

}

@media screen and (max-width: 601px) {
.wp-block-image {float: none; margin: 3% auto;display: block;text-align:center}
 #site-logo { margin: 2% auto;}
.site-footer {padding:2%}
.grid-wrapper {grid-template-columns: repeat(1, 1fr);}
	    .hero-container .hero-content {padding: 1em 3em 0 3em;}
.hero-container .bella-intro-video{aspect-ratio:16/10!important;max-height:260px;}

.price-card{padding:18px;border-radius:16px;}
.price-card h3{font-size:1.2em;}
.price-list li{flex-direction:column;gap:6px;padding:12px 0;text-align:center;}
.price-list li>strong{width:100%;}
.price-list li>strong+*{width:100%;text-align:center;white-space:normal;}

table {border: 0;}
table caption {font-size: 1.3em;}
table td:last-child { border-bottom: 0; }
table thead { display: none; }
table tr { display: block; margin-bottom: 0.625em;}
table td {display: flex; justify-content: space-between; padding: 0.625em;}
table td::before {content: attr(data-label);font-weight: bold;text-transform: uppercase; }
}

@media screen and (max-width: 425px) {
    .hero-container .hero-content {padding: 1em 2em 0 2em;}
.hero-container .bella-intro-video{aspect-ratio:16/10!important;max-height:220px;}

}
