:root {
  --pd-cocoa: #3b1f18;
  --pd-espresso: #160f0c;
  --pd-cherry: #8f2d2d;
  --pd-berry: #b24455;
  --pd-rose: #f4b8ba;
  --pd-blush: #fff1eb;
  --pd-cream: #fff9ef;
  --pd-caramel: #c07a34;
  --pd-honey: #f2c66d;
  --pd-mint: #9ccdb8;
  --pd-ink: #271712;
  --pd-muted: #725b52;
  --pd-line: rgba(59, 31, 24, 0.14);
  --pd-shadow: 0 24px 70px rgba(59, 31, 24, 0.18);
  --pd-radius-lg: 30px;
  --pd-radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--pd-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(244, 184, 186, 0.55), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(242, 198, 109, 0.32), transparent 24rem),
    linear-gradient(135deg, var(--pd-cream) 0%, var(--pd-blush) 48%, #fff 100%);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 34vmax;
  height: 34vmax;
  border-radius: 999px;
  content: "";
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.38;
}

body::before {
  top: 14%;
  left: -18vmax;
  background: repeating-linear-gradient(45deg, rgba(143, 45, 45, 0.18) 0 12px, transparent 12px 24px);
  animation: pd-float-orb 16s ease-in-out infinite;
}

body::after {
  right: -20vmax;
  bottom: 8%;
  background: radial-gradient(circle, rgba(192, 122, 52, 0.24), rgba(156, 205, 184, 0.16), transparent 68%);
  animation: pd-float-orb 19s ease-in-out infinite reverse;
}

a {
  color: var(--pd-cherry);
  text-underline-offset: 0.18em;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.elementor-location-header,
header.site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 239, 0.82) !important;
  border-bottom: 1px solid var(--pd-line);
  box-shadow: 0 12px 34px rgba(59, 31, 24, 0.08);
  backdrop-filter: blur(18px) saturate(1.18);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pd-scrolled .elementor-location-header,
.pd-scrolled header.site-header,
.pd-scrolled .site-header {
  background: rgba(255, 249, 239, 0.94) !important;
  box-shadow: 0 18px 46px rgba(59, 31, 24, 0.14);
}

.custom-logo,
.site-logo img,
.elementor-widget-theme-site-logo img,
.elementor-widget-image a img[src*="logo"] {
  filter: drop-shadow(0 10px 18px rgba(59, 31, 24, 0.18));
  transition: transform 260ms ease, filter 260ms ease;
}

.custom-logo:hover,
.site-logo img:hover,
.elementor-widget-theme-site-logo img:hover {
  transform: rotate(-1.5deg) scale(1.035);
}

.pd-menu-enhanced {
  isolation: isolate;
}

.pd-menu-enhanced li {
  position: relative;
}

.pd-menu-enhanced a,
.elementor-nav-menu a,
.menu a {
  position: relative;
  border-radius: 999px;
  color: var(--pd-cocoa) !important;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 190ms ease, background 190ms ease, transform 190ms ease;
  animation: pd-menu-rise 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--pd-menu-delay, 0ms);
}

.pd-menu-enhanced a::before,
.elementor-nav-menu a::before,
.menu a::before {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pd-cherry), var(--pd-honey), var(--pd-mint));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.pd-menu-enhanced a:hover,
.pd-menu-enhanced a:focus-visible,
.elementor-nav-menu a:hover,
.elementor-nav-menu a:focus-visible,
.menu a:hover,
.menu a:focus-visible {
  color: var(--pd-cherry) !important;
  background: rgba(244, 184, 186, 0.22);
  transform: translateY(-2px);
}

.pd-menu-enhanced a:hover::before,
.pd-menu-enhanced a:focus-visible::before,
.elementor-nav-menu a:hover::before,
.elementor-nav-menu a:focus-visible::before,
.menu a:hover::before,
.menu a:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.elementor-menu-toggle,
.hfe-nav-menu-icon {
  border: 1px solid var(--pd-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 241, 235, 0.9) !important;
  box-shadow: 0 12px 28px rgba(59, 31, 24, 0.12);
}

.elementor-button,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--pd-cherry), var(--pd-caramel)) !important;
  box-shadow: 0 16px 34px rgba(143, 45, 45, 0.25);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.elementor-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(143, 45, 45, 0.32);
  filter: saturate(1.08);
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
h1,
h2,
h3 {
  color: var(--pd-cocoa);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.elementor-widget-heading h1,
h1 {
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p,
p {
  color: var(--pd-muted);
}

.elementor-section,
.e-con {
  position: relative;
}

.elementor-section:first-of-type,
.e-con:first-of-type {
  overflow: hidden;
}

.elementor-section:first-of-type::after,
.e-con:first-of-type::after {
  position: absolute;
  top: 12%;
  right: min(5vw, 60px);
  z-index: 0;
  width: clamp(90px, 13vw, 190px);
  height: clamp(90px, 13vw, 190px);
  border: 1px solid rgba(192, 122, 52, 0.24);
  border-radius: 48% 52% 46% 54%;
  background:
    radial-gradient(circle at 38% 36%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(244, 184, 186, 0.72), rgba(242, 198, 109, 0.46));
  content: "";
  pointer-events: none;
  animation: pd-cake-bob 8s ease-in-out infinite;
}

.elementor-widget-image img,
.woocommerce ul.products li.product,
.woocommerce div.product div.images img {
  border-radius: var(--pd-radius-lg);
}

.elementor-widget-image img,
.woocommerce div.product div.images img {
  box-shadow: var(--pd-shadow);
}

.elementor-widget-image img:hover,
.woocommerce ul.products li.product:hover img {
  transform: translateY(-5px) scale(1.012);
}

.elementor-widget-image img,
.woocommerce ul.products li.product img {
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.woocommerce ul.products {
  display: grid;
  gap: clamp(18px, 2.4vw, 32px);
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 14px 14px 20px !important;
  background: rgba(255, 249, 239, 0.82);
  border: 1px solid var(--pd-line);
  box-shadow: 0 18px 44px rgba(59, 31, 24, 0.10);
  backdrop-filter: blur(12px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--pd-cocoa);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.woocommerce .price {
  color: var(--pd-cherry) !important;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.woocommerce div.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  background: rgba(255, 249, 239, 0.74);
  border: 1px solid var(--pd-line);
  border-radius: var(--pd-radius-lg);
  box-shadow: 0 22px 56px rgba(59, 31, 24, 0.10);
  padding: clamp(16px, 3vw, 34px);
}

input,
textarea,
select,
.select2-container .select2-selection {
  border: 1px solid rgba(59, 31, 24, 0.18) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: var(--pd-ink) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(244, 184, 186, 0.45) !important;
  border-color: var(--pd-berry) !important;
}

.pd-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--pd-reveal-delay, 0ms);
}

.pd-revealed {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    background:
      radial-gradient(circle at 0% 0%, rgba(244, 184, 186, 0.62), transparent 18rem),
      linear-gradient(180deg, var(--pd-cream), #fff);
  }

  .elementor-location-header,
  header.site-header,
  .site-header {
    position: sticky;
  }

  .elementor-section,
  .e-con {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .elementor-nav-menu,
  .menu,
  nav ul {
    gap: 8px !important;
  }

  .elementor-nav-menu a,
  .menu a,
  nav ul a {
    min-height: 44px;
    justify-content: center;
    padding: 12px 16px !important;
  }

  .elementor-widget-heading h1,
  h1 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }

  .elementor-button,
  .button,
  button,
  input[type="submit"],
  .woocommerce a.button {
    width: 100%;
    min-height: 48px;
  }

  .woocommerce ul.products,
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6 {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product,
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    border-radius: 20px;
    padding: 14px;
  }
}

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

  .pd-reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes pd-menu-rise {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pd-float-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(4vw, -2vh, 0) rotate(9deg);
  }
}

@keyframes pd-cake-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
