:root {
--carousel-item-width: calc(100% - 16px);
}
@media (min-width: 768px) {
:root {
--carousel-item-width: calc(33.333% - 16px);
}
}
.carousel-track {
display: flex;
transition: transform 0.6s ease-in-out;
} @media (max-width: 767px) {
.carousel-prev,
.carousel-next {
position: absolute !important;
width: 40px !important;
height: 40px !important;
top: 50% !important;
transform: translateY(-50%) !important;
}
.carousel-prev {
left: 8px !important;
}
.carousel-next {
right: 8px !important;
}
}
color-scheme: light;
--primary: #ec9213;
--charcoal: #1b160d;
--warm-brown: #9a794c;
--forest: #2d3a2d;
--background-light: #f8f7f6;
--background-dark: #221a10;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Work Sans', sans-serif;
line-height: 1.6;
color: var(--charcoal);
background-color: var(--background-light);
} .blog-content p {
margin-bottom: 1.5rem;
font-size: 1.125rem;
line-height: 1.8;
color: rgba(27, 22, 13, 0.8);
font-family: 'Playfair Display', serif;
}
.blog-content h2 {
font-size: 1.875rem;
font-weight: 700;
margin-top: 3rem;
margin-bottom: 1.5rem;
color: var(--charcoal);
}
.blog-content h3 {
font-size: 1.5rem;
font-weight: 700;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--charcoal);
}
.blog-content ul {
list-style: disc outside;
margin-left: 1.5rem;
margin-bottom: 2rem;
space-y: 0.75rem;
font-size: 1.125rem;
color: rgba(27, 22, 13, 0.8);
}
.blog-content ul li {
margin-bottom: 0.75rem;
}
.blog-content img {
width: 100%;
height: auto;
border-radius: 1rem;
margin: 2.5rem 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-content blockquote {
margin: 3rem 0;
padding: 2.5rem 2rem;
background-color: var(--forest);
color: white;
border-radius: 1.875rem;
position: relative;
overflow: hidden;
}
.blog-content blockquote p {
color: white;
font-size: 1.5rem;
font-weight: 700;
font-style: italic;
margin: 0;
}
.blog-content blockquote cite {
display: block;
margin-top: 1.5rem;
font-style: normal;
color: var(--primary);
font-weight: 700;
} .blog-content a {
color: var(--primary);
text-decoration: underline;
font-weight: 600;
transition: all 0.3s ease;
}
.blog-content a:hover {
color: var(--warm-brown);
text-decoration-thickness: 3px;
}
.social-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 9999px;
border: 1px solid rgba(27, 22, 13, 0.1);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.social-icon:hover {
background-color: var(--primary);
color: var(--charcoal);
}
img {
max-width: 100%;
height: auto;
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875rem;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
.kedo-mobile-menu[hidden] {
display: none;
} .pagination-item {
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
border: 1px solid rgba(27, 22, 13, 0.1);
font-size: 0.875rem;
font-weight: 700;
transition: all 0.3s ease;
text-decoration: none;
color: var(--charcoal);
}
.pagination-item:hover {
background-color: var(--primary);
color: var(--charcoal);
}
.pagination-item.active {
background-color: var(--primary);
color: var(--charcoal);
border-color: var(--primary);
} .sidebar-widget {
background-color: white;
padding: 2rem;
border-radius: 1rem;
border: 1px solid rgba(27, 22, 13, 0.05);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sidebar-widget.dark {
background-color: rgba(27, 22, 13, 0.8);
border-color: rgba(255, 255, 255, 0.1);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.sidebar-widget h4 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 1.5rem;
} .wpcf7-form {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.wpcf7-form-control-wrap {
display: flex;
flex-direction: column;
} .wpcf7-form label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--charcoal);
font-size: 0.95rem;
letter-spacing: 0.5px;
} .wpcf7-form-control,
.wpcf7-form-control[type="text"],
.wpcf7-form-control[type="email"],
.wpcf7-form-control[type="tel"],
.wpcf7-form-control[type="number"],
.wpcf7-textarea {
width: 100%;
padding: 0.875rem 1rem;
border: 1px solid rgba(27, 22, 13, 0.15);
border-radius: 0.5rem;
font-family: 'Work Sans', sans-serif;
font-size: 1rem;
color: var(--charcoal);
background-color: white;
transition: all 0.3s ease;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpcf7-form-control::placeholder,
.wpcf7-form-control[type="text"]::placeholder,
.wpcf7-form-control[type="email"]::placeholder,
.wpcf7-form-control[type="tel"]::placeholder,
.wpcf7-form-control[type="number"]::placeholder,
.wpcf7-textarea::placeholder {
color: rgba(27, 22, 13, 0.5);
} .wpcf7-form-control:focus,
.wpcf7-form-control[type="text"]:focus,
.wpcf7-form-control[type="email"]:focus,
.wpcf7-form-control[type="tel"]:focus,
.wpcf7-form-control[type="number"]:focus,
.wpcf7-textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(236, 146, 19, 0.1);
background-color: rgba(236, 146, 19, 0.02);
} .wpcf7-textarea {
resize: vertical;
min-height: 120px;
font-family: 'Work Sans', sans-serif;
line-height: 1.5;
} .wpcf7-submit {
background-color: #ec9213;
color: var(--charcoal);
border: none;
padding: 0.875rem 2rem;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
align-self: flex-start;
box-shadow: 0 2px 8px rgba(236, 146, 19, 0.2);
letter-spacing: 0.5px;
}
.wpcf7-submit:hover {
filter: brightness(1.05);
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(236, 146, 19, 0.3);
}
.wpcf7-submit:active {
transform: translateY(0);
box-shadow: 0 2px 8px rgba(236, 146, 19, 0.2);
}
.wpcf7-submit:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
} .wpcf7-form-control.wpcf7-validates-as-required.wpcf7-not-valid {
border-color: #dc2626;
background-color: rgba(220, 38, 38, 0.03);
box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.wpcf7-not-valid-tip {
color: #dc2626;
font-size: 0.85rem;
margin-top: 0.375rem;
display: block;
font-weight: 500;
} .wpcf7-mail-sent-ok {
background-color: #10b981;
color: white;
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 1.5rem;
font-weight: 600;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
} .wpcf7-response-output {
margin-bottom: 1.5rem;
padding: 1rem;
border-radius: 0.5rem;
font-size: 0.95rem;
}
.wpcf7-form-control-wrap.ajax-loader {
position: relative;
} .wpcf7-spinner {
display: inline-block;
width: 20px;
height: 20px;
margin-left: 0.5rem;
border: 3px solid rgba(236, 146, 19, 0.3);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
} .wpcf7 .g-recaptcha {
margin: 1rem 0;
} .brands-carousel {
overflow: hidden;
}
.brands-carousel-track {
animation: scroll-brands 30s linear infinite;
will-change: transform;
}
@keyframes scroll-brands {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-75%);
}
}
.brands-carousel:hover .brands-carousel-track {
animation-play-state: paused;
}
.brands-carousel-track.instant-reset {
animation: none;
}
.brand-logo {
min-width: 120px;
} .search-no-results {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 5rem 2rem;
text-align: center;
min-height: 400px;
}
.search-no-results .material-symbols-outlined {
font-size: 4rem;
color: rgba(27, 22, 13, 0.15);
margin-bottom: 1.5rem;
font-weight: 400;
}
.search-no-results h3 {
font-size: 1.875rem;
font-weight: 700;
color: var(--charcoal);
margin-bottom: 1rem;
}
.search-no-results p {
color: rgba(27, 22, 13, 0.7);
max-width: 28rem;
margin-bottom: 2rem;
font-size: 1.0625rem;
}
.search-no-results a {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background-color: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.75rem;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
}
.search-no-results a:hover {
background-color: rgba(236, 146, 19, 0.9);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(236, 146, 19, 0.3);
}
.search-no-results a .material-symbols-outlined {
font-size: 1.25rem;
margin-bottom: 0;
} .search-results-article {
display: flex;
flex-direction: column;
gap: 2rem;
padding-bottom: 3rem;
border-bottom: 1px solid rgba(27, 22, 13, 0.05);
}
.search-results-article:last-child {
border-bottom: none;
}
@media (min-width: 768px) {
.search-results-article {
flex-direction: row;
}
}  .kedo-primary-menu > li {
position: relative;
} .kedo-primary-menu > li > .sub-menu {
position: absolute;
top: 100%;
left: 0;
background: white;
min-width: 200px;
border: 1px solid rgba(27, 22, 13, 0.1);
border-radius: 0.5rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
display: none;
z-index: 1000;
margin: 0;
padding: 0.5rem 0;
list-style: none;
} .kedo-primary-menu > li:hover > .sub-menu {
display: block;
animation: slideDown 0.3s ease;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.kedo-primary-menu > li > .sub-menu > li {
margin: 0;
padding: 0;
list-style: none;
position: relative;
} .kedo-primary-menu > li > .sub-menu > li:has(> .sub-menu)::before {
content: '';
position: absolute;
top: 0;
left: 100%;
width: 200px;
height: 100%;
pointer-events: auto;
} .kedo-primary-menu > li > .sub-menu > li > a {
display: flex;
align-items: center;
padding: 0.6rem 1.2rem;
color: var(--charcoal);
text-decoration: none;
font-size: 0.8125rem;
font-weight: 500;
transition: all 0.2s ease;
} .kedo-primary-menu > li > .sub-menu > li:has(> .sub-menu) > a::after {
content: '›';
margin-left: auto;
font-size: 1.2rem;
line-height: 1;
color: var(--charcoal);
transition: color 0.2s ease;
}
.kedo-primary-menu > li > .sub-menu > li:has(> .sub-menu) > a:hover::after {
color: var(--primary);
} .kedo-primary-menu > li > .sub-menu > li > .sub-menu {
position: absolute;
top: 0;
left: 100%;
margin-left: 0;
background: white;
min-width: 200px;
border: 1px solid rgba(27, 22, 13, 0.1);
border-radius: 0.5rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
display: none;
z-index: 1000;
margin: 0 0 0 0.5rem;
padding: 0.5rem 0;
list-style: none;
} .kedo-primary-menu > li > .sub-menu > li:hover > .sub-menu {
display: block;
animation: slideDown 0.3s ease;
} .kedo-primary-menu > li > .sub-menu > li > .sub-menu > li > a {
display: block;
padding: 0.6rem 1.2rem;
color: var(--charcoal);
text-decoration: none;
font-size: 0.8125rem;
font-weight: 500;
transition: all 0.2s ease;
}
.kedo-primary-menu > li > .sub-menu > li > .sub-menu > li > a:hover {
background-color: rgba(236, 146, 19, 0.08);
color: var(--primary);
padding-left: 1.6rem;
} @media (max-width: 767px) {
.kedo-mobile-menu > li {
position: relative;
} .kedo-mobile-menu > li > a {
display: flex;
align-items: center;
padding: 0.25rem 0;
} .kedo-mobile-menu > li:has(> .sub-menu) > a::after {
content: '›';
margin-left: auto;
font-size: 1.2rem;
transition: transform 0.3s ease;
}
.kedo-mobile-menu > li > a.menu-open::after {
transform: rotate(90deg);
} .kedo-mobile-menu .sub-menu > li:has(> .sub-menu) > a::after {
content: '›';
margin-left: auto;
font-size: 1rem;
transition: transform 0.3s ease;
}
.kedo-mobile-menu .sub-menu > li > a.menu-open::after {
transform: rotate(90deg);
}
.kedo-mobile-menu .sub-menu {
margin-top: 0.5rem;
margin-left: 1rem;
padding-left: 1rem;
border-left: 2px solid var(--primary);
position: static;
background: transparent;
min-width: auto;
border: none;
border-radius: 0;
box-shadow: none;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
}
.kedo-mobile-menu .sub-menu.show {
max-height: 1000px;
}
.kedo-mobile-menu .sub-menu > li {
margin: 0;
padding: 0;
list-style: none;
}
.kedo-mobile-menu .sub-menu > li > a {
font-size: 0.75rem;
color: rgba(27, 22, 13, 0.7);
padding: 0.4rem 0 0.4rem 1rem;
display: flex;
align-items: center;
} .kedo-mobile-menu .sub-menu > li:has(> .sub-menu) > a::after {
content: '›';
margin-left: auto;
font-size: 1rem;
transition: transform 0.3s ease;
}
.kedo-mobile-menu .sub-menu > li > a.menu-open::after {
transform: rotate(90deg);
}
.kedo-mobile-menu .sub-menu > li > a:hover {
color: var(--primary);
background-color: transparent;
} .kedo-mobile-menu .sub-menu > li > .sub-menu {
margin-top: 0.5rem;
margin-left: 1rem;
padding-left: 1rem;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
}
.kedo-mobile-menu .sub-menu > li > .sub-menu.show {
max-height: 1000px;
}
.kedo-mobile-menu .sub-menu > li > .sub-menu > li > a {
padding: 0.3rem 0 0.3rem 1rem;
font-size: 0.7rem;
}
} .qa-item {
animation: slideInUp 0.4s ease-out;
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.qa-toggle {
cursor: pointer;
}
.qa-toggle:hover {
background-color: rgba(236, 146, 19, 0.08);
}
.qa-toggle .material-symbols-outlined {
transition: transform 0.3s ease;
}
.qa-toggle[aria-expanded="true"] .material-symbols-outlined {
transform: rotate(180deg);
}
.qa-content {
animation: slideDown 0.3s ease-out;
max-height: 500px;
overflow: hidden;
}
.qa-content.hidden {
animation: slideUp 0.3s ease-out;
max-height: 0;
padding: 0 1.5rem;
border: none;
}
@keyframes slideDown {
from {
opacity: 0;
max-height: 0;
overflow: hidden;
}
to {
opacity: 1;
max-height: 500px;
}
}
@keyframes slideUp {
from {
opacity: 1;
max-height: 500px;
}
to {
opacity: 0;
max-height: 0;
overflow: hidden;
}
} .prose ul {
padding-left: 1.5rem !important;
margin: 1rem 0 !important;
list-style: disc !important;
}
.prose ol {
padding-left: 1.5rem !important;
margin: 1rem 0 !important;
list-style: decimal !important;
}
.prose ul li,
.prose ol li {
display: list-item !important;
margin-bottom: 0.5rem !important;
margin-left: 0 !important;
padding-left: 0 !important;
line-height: 1.6 !important;
} .header-translator {
display: inline-flex;
align-items: center;
margin: 0;
padding: 0;
} .header-translator .goog-te-gadget {
font-family: 'Work Sans', sans-serif !important;
color: #1b160d !important;
font-size: 13px !important;
padding: 0 !important;
background: transparent !important;
margin: 0 !important;
display: flex;
align-items: center;
} .header-translator .goog-te-combo {
background: transparent !important;
border: 1px solid rgba(27, 22, 13, 0.2) !important;
border-radius: 6px !important;
padding: 6px 10px !important;
color: #1b160d !important;
font-size: 12px !important;
font-family: 'Work Sans', sans-serif !important;
font-weight: 500 !important;
cursor: pointer;
transition: all 0.2s ease !important;
box-shadow: none !important;
margin: 0 !important;
outline: none !important;
height: auto !important;
min-height: 32px !important;
}
.header-translator .goog-te-combo:hover {
border-color: #ec9213 !important;
background: rgba(236, 146, 19, 0.08) !important;
color: #1b160d !important;
}
.header-translator .goog-te-combo:focus {
outline: none !important;
border-color: #ec9213 !important;
box-shadow: 0 0 0 2px rgba(236, 146, 19, 0.15) !important;
} body.dark .header-translator .goog-te-combo {
background: transparent !important;
border-color: rgba(255, 255, 255, 0.15) !important;
color: #ffffff !important;
}
body.dark .header-translator .goog-te-combo:hover {
border-color: #ec9213 !important;
background: rgba(236, 146, 19, 0.12) !important;
color: #ffffff !important;
} .header-translator .goog-te-gadget .goog-te-logo {
display: none !important;
}
.header-translator .goog-te-gadget span[style*="vertical-align"] {
display: none !important;
} .header-translator {
position: relative !important;
z-index: 50 !important;
display: inline-flex !important;
align-items: center !important;
} .header-translator select,
.header-translator .gt-combo-box {
background: transparent !important;
border: 1px solid rgba(27, 22, 13, 0.2) !important;
border-radius: 6px !important;
padding: 6px 10px !important;
color: #1b160d !important;
font-size: 12px !important;
font-family: 'Work Sans', sans-serif !important;
font-weight: 500 !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
box-shadow: none !important;
outline: none !important;
min-height: 32px !important;
white-space: nowrap !important;
}
.header-translator select:hover,
.header-translator .gt-combo-box:hover {
border-color: #ec9213 !important;
background: rgba(236, 146, 19, 0.08) !important;
color: #1b160d !important;
}
.header-translator select:focus,
.header-translator .gt-combo-box:focus {
outline: none !important;
border-color: #ec9213 !important;
box-shadow: 0 0 0 2px rgba(236, 146, 19, 0.15) !important;
} body.dark .header-translator select,
body.dark .header-translator .gt-combo-box {
background: transparent !important;
border-color: rgba(255, 255, 255, 0.15) !important;
color: #ffffff !important;
}
body.dark .header-translator select:hover,
body.dark .header-translator .gt-combo-box:hover {
border-color: #ec9213 !important;
background: rgba(236, 146, 19, 0.12) !important;
color: #ffffff !important;
} .header-translator > div {
position: relative !important;
overflow: visible !important;
}
.header-translator select {
max-width: 150px !important;
}