/* Linda Colucci Madalone — modern literary design system */
:root {
  --lcm-ink: #2f2930;
  --lcm-muted: #746a70;
  --lcm-rose: #b94e65;
  --lcm-rose-deep: #94384f;
  --lcm-blush: #f8edf0;
  --lcm-cream: #fffaf6;
  --lcm-paper: #ffffff;
  --lcm-gold: #c4995a;
  --lcm-line: #eadfe1;
  --lcm-shadow: 0 18px 50px rgba(64, 39, 48, 0.1);
  --lcm-radius: 18px;
}

html { scroll-behavior: smooth; }

html {
  scrollbar-color: var(--lcm-rose) var(--lcm-cream);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  height: 13px;
  width: 13px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #fffaf6, #f5e9e8);
  border-left: 1px solid var(--lcm-line);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lcm-rose), var(--lcm-rose-deep));
  background-clip: padding-box;
  border: 3px solid var(--lcm-cream);
  border-radius: 999px;
  min-height: 44px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lcm-rose-deep);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner { background: var(--lcm-cream); }

body,
body.custom-background {
  background: linear-gradient(180deg, #fff 0, var(--lcm-cream) 42%, #f8f2ee 100%) fixed !important;
  color: var(--lcm-ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

body::before {
  background: radial-gradient(circle, rgba(185, 78, 101, 0.12) 0 1px, transparent 1.5px);
  background-size: 22px 22px;
  content: "";
  height: 210px;
  opacity: 0.22;
  pointer-events: none;
  position: fixed;
  right: -70px;
  top: 95px;
  width: 320px;
  z-index: -1;
}

a,
a:link,
a:visited { color: var(--lcm-rose-deep); }

a:hover,
a:focus { color: var(--lcm-rose); }

h1, h2, h3, h4, h5, h6,
.page-title,
.post-title,
.product-title {
  color: var(--lcm-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p { margin-bottom: 1.25em; }

::selection { background: var(--lcm-rose); color: #fff; }

.container {
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
  width: 1220px;
}

/* Header and navigation */
.site-header { background: rgba(255, 255, 255, 0.94); }

.header-top {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(234, 223, 225, 0.7);
}

.header-top .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 112px;
}

#site-logo { display: block; }

#site-logo a,
#site-logo img {
  display: block;
}

#site-logo img.logo {
  filter: saturate(0.82) contrast(1.04);
  height: auto;
  max-width: 390px;
  transition: transform 180ms ease;
  width: min(390px, 47vw);
}

#site-logo a:hover img { transform: translateY(-2px); }

.wrap-account-top,
.account-top {
  float: none;
  margin: 0;
}

.account-top .use-sprite {
  filter: saturate(0.65);
  margin-left: 10px;
  margin-right: 0;
  transition: filter 180ms ease, transform 180ms ease;
}

.account-top .use-sprite:hover {
  filter: saturate(1);
  transform: translateY(-2px);
}

.access-wrap {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid var(--lcm-line);
  box-shadow: 0 9px 28px rgba(68, 45, 53, 0.06);
  position: relative;
  z-index: 99990;
}

/* Preserve the navigation's document space when the legacy theme fixes it. */
.lcm-access-placeholder { display: none; }

.access-wrap.run + .lcm-access-placeholder {
  display: block;
}

#access > div > ul,
#access .menu {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 62px;
}

#access .menu > li { margin: 0 4px; }

#access .menu > li > a {
  border-radius: 999px;
  color: #5f5459;
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 16px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

#access .menu > li > a:hover,
#access .menu > .current-menu-item > a,
#access .menu > .current_page_item > a {
  background: var(--lcm-blush);
  color: var(--lcm-rose-deep);
  transform: translateY(-1px);
}

/* Hero and interior mastheads */
.primary-slider {
  background: #f1e9e8;
  border-bottom: 1px solid var(--lcm-line);
  box-shadow: 0 16px 36px rgba(67, 45, 52, 0.08);
  margin: 0 auto;
  max-width: 1600px;
  overflow: hidden;
}

.home .primary-slider rs-module-wrap {
  border-radius: 0 0 24px 24px;
  overflow: hidden !important;
}

.header-bottom {
  background: linear-gradient(125deg, #6a4b56 0%, #a34c62 56%, #d39a88 100%) !important;
  border: 0;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.22);
  padding: 44px 0 42px;
}

.home .header-bottom {
  background: transparent !important;
  box-shadow: none;
  padding: 0;
}

.home .header-bottom .container { display: none; }

.header-bottom .container { text-align: center; }

.breadcrumb-trail {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.breadcrumb-trail a,
.breadcrumb-trail a:visited { color: #fff; }

.page-title {
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  padding: 0;
  text-shadow: 0 3px 18px rgba(42, 18, 27, 0.22);
}

.featured-search.for-all-page {
  background: transparent;
  margin: -22px auto 0;
  position: relative;
  z-index: 5;
}

.featured-search .searchform {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--lcm-line);
  border-radius: 14px;
  box-shadow: var(--lcm-shadow);
  padding: 18px;
}

.featured-search input,
.featured-search select {
  min-height: 44px;
}

/* Main content surfaces */
.site-main {
  background: transparent !important;
  padding: 64px 0 80px;
}

.site-main > .container { position: relative; }

.hentry .entry-wrapper,
.woocommerce .site-content,
.tribe-events-view,
.tribe-common-l-container {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 223, 225, 0.9);
  border-radius: var(--lcm-radius);
  box-shadow: 0 14px 45px rgba(66, 44, 51, 0.065);
}

.hentry .entry-wrapper { padding: clamp(26px, 4vw, 48px); }

.hentry .entry-wrapper .entry-wrapper { padding: 0; }

.post-title.entry-title,
.post-title.entry-title a {
  color: var(--lcm-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.entry-header { margin-bottom: 24px; }

.entry-content,
.entry-summary,
.single-product .product-description,
.woocommerce-tabs .panel {
  color: #51484d;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.entry-content .alignleft {
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(57, 36, 43, 0.16);
  margin: 6px 30px 20px 0;
}

.tokokoo-avatar { display: none; }

.sidebar .widget {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--lcm-line);
  border-radius: 14px;
  margin-bottom: 22px;
  padding: 24px;
}

.sidebar .widget-title {
  color: var(--lcm-ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.sidebar .widget li {
  border-bottom: 1px solid var(--lcm-line);
  padding: 11px 0;
}

.sidebar .widget li:last-child { border-bottom: 0; }

/* Homepage */
.home .site-main { padding-top: 76px; }

.home-featured {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-bottom: 72px;
}

.home-featured .featured-left,
.home-featured .featured-right {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--lcm-line);
  border-radius: var(--lcm-radius);
  box-shadow: var(--lcm-shadow);
  box-sizing: border-box;
  float: none;
  padding: 34px;
  width: auto;
}

.home-featured .featured-left:not(:has(img, article, li, .inner, form)) { display: none; }
.home-featured .featured-left:not(:has(img, article, li, .inner, form)) + .featured-right { grid-column: 1 / -1; }

.title-featured {
  align-items: center;
  color: var(--lcm-ink);
  display: flex;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 14px;
  letter-spacing: 0.14em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.title-featured::after {
  background: linear-gradient(90deg, var(--lcm-rose), transparent);
  content: "";
  flex: 1;
  height: 1px;
}

.featured-right .inner {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.testimonial-list {
  background: var(--lcm-cream);
  border: 1px solid var(--lcm-line);
  border-radius: 14px;
  box-sizing: border-box;
  min-height: 100%;
  padding: 26px 26px 24px 78px;
  position: relative;
}

.testimonial-list::before {
  color: var(--lcm-rose);
  content: "“";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 76px;
  left: 24px;
  line-height: 1;
  opacity: 0.45;
  position: absolute;
  top: 14px;
}

.testimonial-list .testimonial {
  border: 0;
  color: #51484d;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: normal;
  margin: 0 0 16px;
  padding: 0;
}

.testimonial-avatar { display: none; }

.testimonial-author {
  color: var(--lcm-rose-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.testimonial-author span {
  color: var(--lcm-muted);
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.other-featured.recent-book {
  border: 0;
  margin: 0;
  padding: 0;
}

.recent-book .wrap-item-ii {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recent-book .list-item-ii {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--lcm-line);
  border-radius: var(--lcm-radius);
  box-shadow: var(--lcm-shadow);
  box-sizing: border-box;
  display: grid;
  float: none;
  gap: 26px;
  grid-template-columns: 160px minmax(0, 1fr);
  margin: 0;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: auto;
}

.recent-book .list-item-ii:hover {
  box-shadow: 0 24px 60px rgba(64, 39, 48, 0.14);
  transform: translateY(-4px);
}

.recent-book .list-item-ii .item-left {
  float: none;
  margin: 0;
}

.recent-book .list-item-ii .item-thumb {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(41, 26, 31, 0.2);
  max-width: none;
  overflow: hidden;
}

.recent-book .list-item-ii .item-thumb img { width: 100%; }

.recent-book .list-item-ii .item-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
  margin: 5px 0 3px;
}

.recent-book .list-item-ii .item-description {
  color: var(--lcm-muted);
  font-size: 15px;
  line-height: 1.55;
}

.recent-book .list-item-ii .price {
  color: var(--lcm-rose-deep);
  font-size: 20px;
}

/* Buttons and forms */
.added_to_cart,
.button,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
.list-item-ii .add-to-cart,
.woocommerce a.button,
.woocommerce button.button,
.tribe-common .tribe-common-c-btn {
  background: var(--lcm-rose) !important;
  background-image: none !important;
  border: 1px solid var(--lcm-rose) !important;
  border-radius: 999px !important;
  box-shadow: 0 9px 22px rgba(148, 56, 79, 0.2);
  color: #fff !important;
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  line-height: 1.2 !important;
  min-height: 42px;
  padding: 12px 22px !important;
  text-shadow: none !important;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.added_to_cart:hover,
.button:hover,
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.list-item-ii .add-to-cart:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--lcm-rose-deep) !important;
  box-shadow: 0 12px 28px rgba(148, 56, 79, 0.28);
  transform: translateY(-2px);
}

/* Compact, vertically centered WooCommerce purchase actions. */
.woocommerce .single-product button.single_add_to_cart_button.button,
.woocommerce .woocommerce-message a.button.wc-forward,
.woocommerce .wc-proceed-to-checkout a.checkout-button.button,
.woocommerce .widget_shopping_cart_content .buttons a.button,
.woocommerce .woocommerce-mini-cart__buttons a.button {
  align-items: center !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  min-height: 42px !important;
  padding: 8px 18px !important;
  text-align: center !important;
  vertical-align: middle !important;
}

/* Verified external bookstore choices on book pages. */
.lcm-bookstores {
  background: linear-gradient(145deg, #fff, var(--lcm-cream));
  border: 1px solid var(--lcm-line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(64, 39, 48, 0.08);
  clear: both;
  margin-top: 24px;
  padding: 20px;
}

.lcm-bookstores h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.lcm-bookstores-intro {
  color: var(--lcm-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.lcm-bookstore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lcm-bookstore-link,
.lcm-bookstore-link:link,
.lcm-bookstore-link:visited {
  align-items: center;
  background: #fff;
  border: 1px solid var(--lcm-rose);
  border-radius: 12px;
  box-sizing: border-box;
  color: var(--lcm-rose-deep);
  display: inline-flex;
  flex: 1 1 150px;
  justify-content: space-between;
  min-height: 52px;
  padding: 9px 13px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lcm-bookstore-link:hover,
.lcm-bookstore-link:focus-visible {
  background: var(--lcm-blush);
  border-color: var(--lcm-rose-deep);
  box-shadow: 0 8px 20px rgba(148, 56, 79, 0.14);
  color: var(--lcm-rose-deep);
  transform: translateY(-1px);
}

.lcm-bookstore-link:focus-visible {
  outline: 3px solid var(--lcm-gold);
  outline-offset: 3px;
}

.lcm-bookstore-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.lcm-bookstore-detail {
  color: var(--lcm-muted);
  font-size: 11px;
  line-height: 1.2;
  margin-left: 10px;
  text-align: right;
}

.lcm-book-isbn {
  color: var(--lcm-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  margin: 12px 0 0;
}

textarea,
select,
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[class*="text"] {
  background-color: #fff;
  border: 1px solid #d9cdd0;
  border-radius: 10px;
  color: var(--lcm-ink);
  min-height: 46px;
  padding: 10px 13px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

textarea:focus,
select:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus {
  border-color: var(--lcm-rose);
  box-shadow: 0 0 0 4px rgba(185, 78, 101, 0.12);
  outline: 0;
}

/* Blog, events, and commerce */
.blog .blog-page .hentry { margin-bottom: 28px; }

.blog .entry-meta,
.entry-date,
.post-meta {
  color: var(--lcm-muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tribe-events-view,
.tribe-common-l-container { padding: clamp(24px, 4vw, 48px) !important; }

.single-product .site-content {
  box-sizing: border-box;
  padding: clamp(26px, 4vw, 46px);
}

.single-product .wrap-left,
.single-product .wrap-right { box-sizing: border-box; }

.single-product .images img {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(55, 35, 42, 0.18);
}

.single-product .product-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
}

.single-product .summary .price {
  background: var(--lcm-blush);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: var(--lcm-rose-deep);
  padding: 10px 18px;
}

.single-product .inner-bottom,
.bottom-two {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--lcm-line);
  border-radius: 14px;
  margin-top: 28px;
}

.woocommerce-tabs .tabs li a,
.tabs-wraps .tabs li a {
  background: var(--lcm-blush) !important;
  background-image: none !important;
  border: 1px solid var(--lcm-line) !important;
  border-radius: 999px;
  color: var(--lcm-rose-deep) !important;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li:hover a,
.tabs-wraps .tabs li.active a,
.tabs-wraps .tabs li:hover a {
  background: var(--lcm-rose) !important;
  color: #fff !important;
}

/* Footer */
.site-footer {
  background: #332b31 !important;
  border-top: 4px solid var(--lcm-rose);
  min-height: 100px;
  position: relative;
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, var(--lcm-rose), transparent);
  content: "";
  display: block;
  height: 1px;
  margin: 0 auto;
  position: relative;
  top: 48px;
  width: min(220px, 40vw);
}

.site-footer .container { padding-bottom: 32px; }

/* Responsive refinements */
@media screen and (max-width: 980px) {
  .container { max-width: 100%; }

  #access .menu > li > a {
    font-size: 12px;
    padding: 9px 10px;
  }

  .recent-book .list-item-ii { grid-template-columns: 125px minmax(0, 1fr); }
}

@media screen and (max-width: 880px) {
  .layout-2c-l .content-area,
  .layout-2c-r .content-area,
  .layout-2c-l .sidebar,
  .layout-2c-r .sidebar {
    float: none;
    margin-right: 0;
    width: auto;
  }

  .sidebar { margin-top: 28px !important; }

  .home-featured,
  .recent-book .wrap-item-ii { grid-template-columns: 1fr; }
}

@media screen and (max-width: 690px) {
  body { font-size: 16px; }
  body::before { display: none; }

  .site-header { margin-top: 50px; }

  .header-top .container {
    justify-content: center;
    min-height: 92px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  #site-logo img.logo { width: min(290px, 68vw); }

  .header-top .wrap-account-top { display: none; }
  .wrap-account-top { padding-bottom: 0; }
  .account-top .use-sprite { margin-left: 4px; transform: scale(0.9); }

  .access-wrap.run {
    position: relative !important;
    top: auto !important;
  }

  .access-wrap.run + .lcm-access-placeholder { display: none; }

  #access #menu-menu { display: none; }

  #mobile-menu {
    background: var(--lcm-cream);
    border-right-color: var(--lcm-rose);
    box-shadow: 18px 0 50px rgba(42, 26, 32, 0.2);
  }

  #mobile-menu ul a {
    color: var(--lcm-ink);
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .header-bottom { padding: 34px 0 48px; }
  .featured-search.for-all-page { margin-top: -22px; }
  .featured-search .searchform { padding: 14px; }

  .site-main,
  .home .site-main { padding: 44px 0 60px; }

  .home-featured .featured-left,
  .home-featured .featured-right,
  .recent-book .list-item-ii,
  .hentry .entry-wrapper,
  .single-product .site-content { padding: 24px; }

  .featured-right .inner { grid-template-columns: 1fr; }
  .testimonial-list { padding: 24px 22px 22px 66px; }

  .recent-book .list-item-ii {
    border-bottom: 1px solid var(--lcm-line);
    grid-template-columns: 105px minmax(0, 1fr);
    margin-bottom: 0;
  }

  .entry-content .alignleft {
    display: block;
    float: none;
    margin: 0 auto 24px;
  }

  .single-product .wrap-left,
  .single-product .wrap-right {
    display: block;
    float: none;
    margin: 0 0 28px;
    width: auto;
  }
}

@media screen and (max-width: 440px) {
  .container { max-width: 100%; padding-left: 16px; padding-right: 16px; }

  .header-top .container { align-items: flex-start; }
  #site-logo img.logo { width: min(245px, 66vw); }
  .account-top .my-account { display: none; }

  .recent-book .list-item-ii {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .recent-book .list-item-ii .item-thumb { max-width: 170px; }

  .added_to_cart,
  .button,
  button,
  input[type="submit"] { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Cookie consent — literary rose-and-cream treatment */
.cky-consent-container {
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
  max-width: calc(100vw - 32px) !important;
}

.cky-consent-container .cky-consent-bar,
.cky-modal,
.cky-preference-center {
  background: linear-gradient(145deg, #fffdfb, var(--lcm-cream)) !important;
  border: 1px solid var(--lcm-line) !important;
  border-radius: var(--lcm-radius) !important;
  box-shadow: 0 22px 64px rgba(64, 39, 48, 0.2) !important;
  color: var(--lcm-ink) !important;
}

.cky-consent-container .cky-consent-bar {
  padding: 24px 26px !important;
}

.cky-notice .cky-title,
.cky-preference-header .cky-preference-title {
  color: var(--lcm-ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15 !important;
}

.cky-notice-des,
.cky-preference-content-wrapper,
.cky-accordion-header-des,
.cky-notice-group {
  color: var(--lcm-muted) !important;
  line-height: 1.6 !important;
}

.cky-notice-btn-wrapper,
.cky-prefrence-btn-wrapper {
  gap: 9px !important;
}

.cky-btn {
  border-radius: 999px !important;
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  margin: 0 !important;
  min-height: 42px !important;
  padding: 8px 16px !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.cky-btn-accept,
.cky-opt-out-btn-wrapper .cky-btn-confirm {
  background: linear-gradient(135deg, var(--lcm-rose), var(--lcm-rose-deep)) !important;
  border-color: var(--lcm-rose-deep) !important;
  color: #fff !important;
}

.cky-btn-customize,
.cky-btn-reject,
.cky-btn-preferences {
  background: #fff !important;
  border-color: var(--lcm-rose) !important;
  color: var(--lcm-rose-deep) !important;
}

.cky-btn:hover,
.cky-btn:focus-visible {
  opacity: 1 !important;
  transform: translateY(-1px);
}

.cky-btn:focus-visible,
.cky-btn-revisit:focus-visible,
.cky-preference-header .cky-btn-close:focus-visible,
.cky-switch input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--lcm-gold) !important;
  outline-offset: 3px !important;
}

.cky-btn-revisit-wrapper {
  background: linear-gradient(135deg, var(--lcm-rose), var(--lcm-rose-deep)) !important;
  border: 3px solid var(--lcm-cream) !important;
  box-shadow: 0 0 0 2px var(--lcm-gold), 0 10px 28px rgba(64, 39, 48, 0.22) !important;
  height: 48px !important;
  left: 20px !important;
  width: 48px !important;
}

.cky-btn-revisit-wrapper:hover {
  transform: translateY(-2px);
}

.cky-btn-revisit-wrapper:hover::before {
  background: var(--lcm-ink) !important;
  border-radius: 8px !important;
  box-shadow: var(--lcm-shadow) !important;
  font-family: "Source Sans 3", "Segoe UI", sans-serif !important;
}

.cky-switch input[type="checkbox"]:checked {
  background: var(--lcm-rose-deep) !important;
}

.cky-audit-table {
  background: var(--lcm-blush) !important;
  border-radius: 10px !important;
}

.cky-overlay { background: rgba(47, 41, 48, 0.48) !important; }

@media screen and (max-width: 440px) {
  .cky-consent-container .cky-consent-bar { padding: 22px 0 !important; }
  .cky-notice .cky-title { font-size: 22px !important; }
  .cky-notice-btn-wrapper { gap: 0 !important; }
  .cky-btn { margin-top: 9px !important; }
}
