/* Reset & Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #F5F7F3;
  color: #29413F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #29413F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B4954A;
}
ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==== Typography ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #182825;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #29413F;
}
blockquote {
  border-left: 3px solid #B4954A;
  background: #fff;
  padding: 12px 32px;
  font-style: italic;
  margin-bottom: 20px;
  color: #444;
}
strong {
  color: #B4954A;
  font-weight: 600;
}
/* List bulleted style for inner content */
.text-section ul,
li ul, li ol, .feature-list ul,
.benefits-list, .next-steps ul {
  list-style: disc inside;
  margin-bottom: 16px;
  color: #29413F;
}
.text-section ul li, .benefits-list li, .next-steps li {
  margin-bottom: 8px;
}
/* Accent links */
.cta-link {
  color: #B4954A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.cta-link:hover {
  color: #88711e;
}

/* ==== Buttons ==== */
.cta-btn, .cta-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  background: #29413F;
  color: #fff;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  border: 2px solid #B4954A;
  box-shadow: 0 2px 16px rgba(22,24,16,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s, transform 0.13s;
  margin-top: 12px;
  position: relative;
}
.cta-btn.primary {
  background: #B4954A;
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #B4954A;
  box-shadow: 0 4px 24px rgba(180,149,74,0.10);
  border-color: #B4954A;
  transform: translateY(-2px) scale(1.035);
}

/* ==== Mobile Burger Menu ==== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #B4954A;
  color: #B4954A;
  font-size: 2rem;
  padding: 4px 16px;
  border-radius: 36px;
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 105;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B4954A;
  color: #fff;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(41,65,63,0.98);
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.83,.13,.47,.89);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: #fff;
  color: #B4954A;
  border: 2px solid #B4954A;
  border-radius: 32px;
  font-size: 2rem;
  padding: 4px 16px;
  z-index: 120;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B4954A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  gap: 20px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  padding: 18px 0 10px 3px;
  width: 100%;
  border-bottom: 1px solid rgba(212,210,190,0.14);
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #B4954A;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
}

@media (max-width: 830px) {
  header nav.main-nav ul, header nav.main-nav a.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 831px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* ==== Navigation ==== */
header {
  background: #fff;
  box-shadow: 0 5px 24px rgba(180,149,74,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 10px 0;
  position: relative;
}
.main-nav > a img {
  height: 40px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-left: 32px;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #29413F;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #B4954A;
  border-bottom: 2px solid #B4954A;
}
.main-nav .cta-btn {
  margin-left: 32px;
}


/* ==== Hero & Section Styles ==== */
.hero, .hero-diy, .hero-garden {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(40,55,45,0.06);
  margin-bottom: 60px;
  padding: 48px 20px 48px 20px;
  display: flex;
  align-items: center;
}
.hero .container, .hero-diy .container, .hero-garden .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.hero h1, .hero-diy h1, .hero-garden h1 {
  color: #29413F;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero h2 {
  color: #6C7B74;
  font-size: 1.3rem;
  font-family: 'Roboto', Arial, sans-serif;
  max-width: 630px;
  margin-bottom: 24px;
}

/* Section: Features */
.features, .features-garden, .features ul {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(180,149,74,0.06);
  padding: 36px 20px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.feature {
  background: #F5F7F3;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(41,65,63,0.08);
  padding: 32px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  max-width: 320px;
  border: 2px solid transparent;
  transition: border 0.17s, box-shadow 0.17s, transform 0.17s;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.18rem;
  color: #29413F;
  margin-bottom: 2px;
}
.feature p {
  color: #29413F;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature:hover {
  border: 2px solid #B4954A;
  background: #fff;
  box-shadow: 0 8px 24px rgba(41,65,63,0.13);
  transform: translateY(-3px) scale(1.035);
}

.features-garden ul {
  padding-left: 0;
}
.features-garden ul li {
  padding-left: 0;
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #29413F;
  display: flex;
  align-items: flex-start;
}
.features-garden ul li strong {
  margin-right: 5px;
}
.features-garden h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.13rem;
}


/* Cards & Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px rgba(41,65,63,0.04);
  padding: 18px 24px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(41,65,63,0.10);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(41,65,63,0.08);
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 32px;
  background: #F5F7F3;
  border-radius: 16px;
  min-width: 250px;
  max-width: 420px;
  box-shadow: 0 2px 12px rgba(41,65,63,0.06);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #182825;
  font-size: 1.11rem;
}
.testimonial-meta {
  display: flex;
  gap: 14px;
  color: #B4954A;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(180,149,74,0.10);
}

/* CTA mega blocks */
.contact-cta, .cta-block, .cta-inspire, .cta-book-diy, .cta-garden, .cta-contact {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(41,65,63,0.09);
}

/* About & Text Sections */
.about-teaser, .about, .team, .services-teaser, .services-overview, .inspiration-showcase, .trends-features, .diy-ideas, .thanks-section, .legal-section, .project-descriptions, .how-to-texts {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(41,65,63,0.06);
}
.text-section {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-descriptions h3,
.diy-ideas h3 {
  color: #29413F;
  margin-bottom: 4px;
  font-weight: 700;
}
.project-descriptions p {
  color: #4d5552;
  margin-bottom: 12px;
}
.how-to-texts h4 {
  margin-bottom: 8px;
  color: #29413F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.how-to-texts ol {
  margin-bottom: 14px;
  padding-left: 22px;
}
.benefits-list {
  list-style: disc inside;
  margin-left: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 14px;
}
.service-item {
  background: #F5F7F3;
  padding: 24px 20px;
  border-radius: 13px;
  margin-bottom: 20px;
  border-left: 4px solid #B4954A;
  box-shadow: 0 2px 14px rgba(180,149,74,0.06);
  transition: box-shadow 0.14s, border-left 0.14s;
}
.service-item:hover {
  border-left: 4px solid #88711e;
  box-shadow: 0 6px 24px rgba(180,149,74,0.17);
}

/* Footer */
footer {
  background: #fff;
  box-shadow: 0 -4px 16px rgba(41,65,63,0.07);
  padding: 34px 0 0 0;
  margin-top: 60px;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 220px;
}
.footer-brand img {
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-left: 0;
  min-width: 220px;
}
.footer-nav a {
  color: #29413F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #B4954A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  color: #29413F;
  font-size: 0.98rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}

/* ==== Cookie Consent Banner ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #29413F;
  box-shadow: 0 -6px 38px rgba(41,65,63,0.07);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 16px 20px 16px;
  flex-wrap: wrap;
  transition: transform 0.35s cubic-bezier(.38,.68,.53,.99);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__content {
  max-width: 600px;
  font-size: 1.03rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 8px 26px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(180,149,74,0.08);
  border: 2px solid #B4954A;
  background: #fff;
  color: #B4954A;
  margin-right: 4px;
  transition: background 0.17s, color 0.17s, border 0.13s;
}
.cookie-banner__btn.accept {
  background: #B4954A;
  color: #fff;
}
.cookie-banner__btn.reject {
  background: #fff;
  color: #B4954A;
}
.cookie-banner__btn.settings {
  background: #29413F;
  color: #fff;
  border-color: #29413F;
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  background: #88711e;
  color: #fff;
  border-color: #88711e;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(41,65,63,0.7);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(180,149,74,0.25);
  max-width: 420px;
  width: 95vw;
  padding: 38px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeinModal 0.38s cubic-bezier(.44,.88,.54,1.08);
}
@keyframes fadeinModal {
  from { opacity:0; transform: translateY(30px) scale(.98); }
  to { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  background: #fff;
  color: #B4954A;
  border: 2px solid #B4954A;
  border-radius: 24px;
  font-size: 1.5rem;
  padding: 2px 10px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #B4954A;
  color: #fff;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
  margin-bottom: 6px;
}
.cookie-toggle {
  width: 44px;
  height: 25px;
  border-radius: 14px;
  border: 2px solid #B4954A;
  background: #F5F7F3;
  position: relative;
  transition: background 0.13s, border 0.13s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #B4954A;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 21px;
  background: #29413F;
}
.cookie-modal .cookie-toggle[aria-disabled='true'] {
  opacity: 0.6;
  border-color: #d2d2ca;
  pointer-events: none;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .footer-brand, .footer-nav, .footer-contact {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .content-wrapper { gap: 18px; }
  footer .content-wrapper { gap: 18px; }
  .testimonials .testimonial-slider {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .main-nav {
    padding: 10px 0 8px 0;
    min-height: 62px;
  }
  .container {
    padding-left: 8px;
    padding-right:8px;
  }
  .section, section,
  .hero, .features, .about, .team, .services-overview, .about-teaser, .services-teaser {
    padding: 20px 7px;
    margin-bottom: 34px;
  }
  .hero, .hero-diy, .hero-garden {
    padding: 24px 10px 26px 10px;
  }
  .hero .container {
    min-height: 150px;
  }
  .footer-brand, .footer-nav, .footer-contact {
    min-width: unset;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid, .testimonials .testimonial-slider, .service-list, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    max-width: unset;
    min-width: unset;
    width: 100%;
    padding: 20px 10px 20px 10px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 16px 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .about-teaser, .features, .section, .services-overview, .cta-block, .trends-features, .how-to-texts {
    padding: 17px 7px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 6px 18px 6px;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 22px 5vw 16px 5vw;
  }
}

@media (max-width: 600px) {
  html { font-size: 14px; }
  .main-nav > a img, .footer-brand img {
    height: 30px;
  }
  .content-wrapper { gap: 13px; }
  .footer-brand, .footer-nav, .footer-contact { min-width: unset; }
}

/* ===== Utility Patterns from Requirements ===== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Highlight gold accent */
hr, .gold-accent, .cta-btn.primary, .service-item, .testimonials h2, .feature h3, .testimonial-meta, .footer-brand p, .cookie-banner__btn.accept, .card.gold, .cookie-modal h2 {
  /* Gold accent: */
  --gold: #B4954A;
}

/* Gold underline effect for headings */
.about-teaser h2, .features h2, .services-overview h1, .testimonials h2, .contact-cta h2,
.cta-block h2, .cta-inspire h2, .cta-book-diy h2, .cta-garden h2, .cta-contact h2 {
  position: relative;
}
.about-teaser h2::after, .features h2::after, .services-overview h1::after, .testimonials h2::after, .contact-cta h2::after,
.cta-block h2::after, .cta-inspire h2::after, .cta-book-diy h2::after, .cta-garden h2::after, .cta-contact h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 44px; height: 4px;
  background: #B4954A;
  border-radius: 2px;
  opacity: 0.35;
}

/* Miscellaneous Minor Styles */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F7F3;
}
::-webkit-scrollbar-thumb {
  background: #D7E5D1;
  border-radius: 10px;
}
::selection {
  background: #B4954A;
  color: #fff;
}

/* Accessibility: Focus Rings */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-close:focus, .cookie-banner__btn:focus, .cookie-modal-close:focus {
  outline: 2px solid #B4954A;
  outline-offset: 2px;
  z-index: 1060;
}

/* CRITICAL: Prevent content overlapping */
.card, .feature, .testimonial-card, .service-item, .container, .section {
  margin-bottom: 20px;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  color: #29413F;
}
.contact-info img {
  width: 20px;
  height: 20px;
}

/***** Hide visually but accessible ******/
.sr-only {
  border: 0 !important; clip: rect(0 0 0 0) !important; height: 1px !important; margin: -1px !important;
  overflow: hidden !important; padding: 0 !important; position: absolute !important; width: 1px !important;
}

/******************************************/
/* === END CrispNest Theme Luxury Premium === */