:root {
  --pb-accent: #333333;
  --pb-bg-main: #e5e3dd;
  --pb-card-bg: #ffffff;
  --pb-text-main: #1a1a1a;
  --pb-text-muted: #666666;
  --pb-font-serif: Georgia, serif;
  --pb-font-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.pb-btn-primary {
  background: #333333;
  color: #fff;
}
.pb-btn-primary:hover {
  background: #000;
}
.pb-btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.pb-btn-secondary {
  background: transparent;
  color: #333333;
  border: 1px solid #333333;
}
.pb-btn-secondary:hover {
  background: #f5f5f5;
}

.pb-loading, .pb-error {
  text-align: center;
  padding: 100px 20px;
  font-size: 18px;
  font-family: "Georgia", serif;
}

.pb-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e5e3dd;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pb-loader-overlay.active {
  display: flex;
  opacity: 1;
}

.pb-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #333333;
  animation: pb-spin 1s ease-in-out infinite;
}

@keyframes pb-spin {
  to {
    transform: rotate(360deg);
  }
}
body.pb-modal-open {
  overflow: hidden;
}

.wc-pb-builder {
  max-width: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background: #e5e3dd;
  min-height: 100vh;
  box-sizing: border-box;
}
.wc-pb-builder * {
  box-sizing: border-box;
}

.wc-pb-builder__hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.wc-pb-builder__hero .wc-pb-builder__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wc-pb-builder__hero .wc-pb-builder__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.wc-pb-builder__hero .wc-pb-builder__hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .wc-pb-builder__hero {
    height: 300px;
  }
  .wc-pb-builder__hero .wc-pb-builder__hero-title {
    font-size: 2rem;
  }
}
.pb-frontend-wrap {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.pb-frontend-header {
  padding: 20px 40px 60px;
  background: transparent;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 100;
}
.pb-frontend-header h1 {
  display: none;
}

.pb-modal-nav-actions {
  display: flex;
  gap: 12px;
}

.pb-frontend-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.pb-step-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  overflow-x: auto;
  padding-bottom: 5px;
  width: 100%;
}
@media (max-width: 992px) {
  .pb-step-nav {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .pb-step-nav {
    gap: 10px;
  }
}
.pb-step-nav-item {
  font-family: "Georgia", serif;
  font-size: 20px;
  color: #1a1a1a;
  opacity: 0.3;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .pb-step-nav-item {
    display: none;
  }
}
.pb-step-nav-item.active {
  opacity: 1;
  border-bottom-color: #1a1a1a;
}
@media (max-width: 480px) {
  .pb-step-nav-item.active {
    display: block;
  }
}
.pb-step-nav-item:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .pb-step-nav-item {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .pb-step-nav-item {
    font-size: 13px;
  }
}

.pb-progress-bar {
  display: none;
}

.pb-step-content {
  padding: 0 0 30px 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.pb-step-info {
  display: none;
}

.pb-items-grid {
  display: none;
}

.pb-items-slider {
  margin: 0 -15px;
  position: relative;
}
.pb-items-slider .slick-list {
  overflow: hidden;
}
.pb-items-slider .pb-item-card {
  height: auto;
  flex: none;
  width: 350px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  min-height: 400px;
}
.pb-items-slider .slick-track {
  display: flex !important;
}
.pb-items-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
  justify-content: center;
}
.pb-items-slider .slick-prev,
.pb-items-slider .slick-next {
  position: absolute;
  bottom: -60px;
  top: auto;
  transform: none;
  z-index: 10;
  background: #333;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 40px;
  padding-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.pb-items-slider .slick-prev:before,
.pb-items-slider .slick-next:before {
  content: "";
}
.pb-items-slider .slick-prev:hover,
.pb-items-slider .slick-next:hover {
  background: #000;
}
.pb-items-slider .slick-prev {
  right: 60px;
  left: auto;
}
.pb-items-slider .slick-next {
  right: 0;
}
.pb-items-slider .slick-dots {
  position: absolute;
  bottom: -50px;
  left: 0;
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.pb-items-slider .slick-dots li {
  margin: 0;
  padding: 0;
}
.pb-items-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s;
}
.pb-items-slider .slick-dots li button:before {
  content: "";
}
.pb-items-slider .slick-dots li button:hover {
  background: #999;
}
.pb-items-slider .slick-dots li.slick-active button {
  background: #333;
  width: 20px;
  border-radius: 5px;
}
.pb-items-slider .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.pb-item-card {
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 30px;
  cursor: default;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  flex: 1 1 300px;
}
.pb-item-card.selected .pb-btn-add {
  background: #10b981;
}
.pb-item-card .pb-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
}
.pb-item-card .pb-more-info {
  background: #333;
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  display: inline-block;
  padding: 6px;
  font-family: "brandon-grotesque", Helvetica, "Helvetica Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.pb-item-card .pb-item-badge-text {
  font-size: 10px;
  color: #2A3032;
  font-weight: 400;
  display: inline-block;
  padding: 6px;
  font-family: "brandon-grotesque", Helvetica, "Helvetica Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(229, 227, 222, 0.3019607843);
  margin-bottom: 20px;
}
.pb-item-card .pb-item-image {
  aspect-ratio: 1;
  margin: 40px auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pb-item-card .pb-item-details h3 {
  font-family: "Georgia", serif;
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: 400;
}
.pb-item-card .pb-item-desc {
  font-size: 13px;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.4;
}
.pb-item-card .pb-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid transparent;
}
.pb-item-card .pb-item-price {
  font-weight: 700;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
}
.pb-item-card .pb-btn-add {
  background: #333;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.pb-slideover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
  display: none;
  backdrop-filter: blur(2px);
}

.pb-slideover {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 900px;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.pb-slideover.active {
  right: 0;
}
.pb-slideover-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  color: #333;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.pb-slideover-close:hover {
  opacity: 1;
}
.pb-slideover-content {
  display: flex;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pb-slideover-content {
    flex-direction: column;
  }
}
.pb-slideover-images {
  flex: 1;
  overflow-y: auto;
  padding: 60px;
  background: #fcfcfc;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .pb-slideover-images {
    flex: none;
    padding: 40px;
  }
}
.pb-slideover-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pb-slideover-details {
  flex: 1;
  overflow-y: auto;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
}
@media (max-width: 768px) {
  .pb-slideover-details {
    padding: 40px;
  }
}
.pb-slideover-title {
  font-family: "Georgia", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 30px 0;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .pb-slideover-title {
    font-size: 32px;
  }
}
.pb-slideover-description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}
.pb-slideover-description p {
  margin-bottom: 1.5em;
}
.pb-slideover-description ul {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
.pb-slideover-description li {
  margin-bottom: 0.5em;
}
.pb-slideover-actions {
  margin-top: auto;
  padding-top: 40px;
  margin-bottom: 40px;
}
.pb-slideover-attributes {
  border-top: 1px solid #eee;
  padding-top: 40px;
}
.pb-slideover-add.pb-btn-primary {
  width: auto;
  padding: 18px 40px;
  font-size: 13px;
}

.pb-attr {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}
.pb-attr strong {
  color: #333;
  font-weight: 700;
}

.pb-summary-header-box {
  text-align: center;
  margin-bottom: 60px;
}
.pb-summary-header-box h1 {
  font-family: "Georgia", serif;
  font-size: 48px;
  margin: 0 0 10px 0;
}
.pb-summary-header-box p {
  color: #666666;
  font-size: 18px;
  margin-top: 0;
}

.pb-summary-hero {
  text-align: center;
  margin-bottom: 40px;
}
.pb-summary-hero img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.pb-summary-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .pb-summary-layout {
    flex-direction: column;
  }
}

.pb-summary-left {
  flex: 1.2;
}

.pb-summary-right {
  width: 40%;
}
@media (max-width: 992px) {
  .pb-summary-right {
    position: static;
    width: 100%;
    min-height: auto;
    padding-bottom: 40px;
  }
}

.pb-summary-card {
  background: white;
  padding: 40px;
}
.pb-summary-card.pb-summary-right-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pb-summary-card .pb-enquiry-form-container {
  margin-bottom: 20px;
}

.pb-summary-item {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
.pb-summary-item:last-child {
  border-bottom: none;
}
.pb-summary-item-image {
  width: 120px;
  height: 120px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-summary-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pb-summary-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pb-summary-item-title {
  font-family: "Georgia", serif;
  font-size: 22px;
  margin: 0 0 5px 0;
  font-weight: 400;
}
.pb-summary-item-price {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.pb-summary-step {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #666666;
  margin-bottom: 8px;
}

.pb-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  font-family: "Georgia", serif;
}
.pb-summary-total span {
  font-size: 16px;
  color: #666666;
}
.pb-summary-total strong {
  font-size: 28px;
}

.pb-summary-actions {
  margin-top: 20px;
}
.pb-summary-actions .pb-btn {
  width: 100%;
  padding: 18px;
  font-size: 13px;
}

.pb-summary-content {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .pb-summary-content {
    flex-direction: column;
    min-height: auto;
  }
}
.pb-summary-content .pb-final-image {
  width: 60%;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  flex: 1;
}
@media (max-width: 992px) {
  .pb-summary-content .pb-final-image {
    width: 100%;
    flex: none;
    height: 400px;
  }
}
.pb-summary-content .pb-final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pb-summary-content .pb-final-image .pb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
  pointer-events: none;
}
.pb-summary-content .pb-final-image .pb-hero-overlay-text {
  font-family: "Georgia", serif;
  font-size: clamp(28px, 3.25vw, 52px);
  color: white;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: clamp(20px, 2vw, 40px);
}

.pb-summary-list {
  margin-bottom: 40px;
}

.pb-summary-item-legacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.pb-summary-item-legacy-info {
  display: flex;
  flex-direction: column;
}
.pb-summary-item-legacy-price {
  font-weight: 700;
}

.pb-summary-total-legacy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 24px;
  font-family: "Georgia", serif;
}

.pb-enquiry-form h3 {
  font-family: "Georgia", serif;
  font-size: 24px;
  margin-bottom: 20px;
}
.pb-enquiry-form .pb-form-grid {
  grid-template-columns: 1fr;
  gap: 15px;
}

.pb-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pb-form-group.full-width {
  grid-column: 1/-1;
}

.pb-form-input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
}
.pb-form-input:focus {
  border-color: #333;
  outline: none;
}
.pb-form-input textarea {
  min-height: 120px;
}

.pb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .pb-form-grid {
    grid-template-columns: 1fr;
  }
}

.pb-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.pb-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.pb-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .pb-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}
.pb-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #eee;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.pb-modal-close:hover {
  background: #ddd;
}

.pb-full-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e5e3dd;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  transition: all 0.3s ease;
}
.pb-full-modal.step-summary {
  background: #fff;
}
@media (max-width: 992px) {
  .pb-full-modal.step-summary .pb-frontend-wrap {
    padding: 0;
  }
}
.pb-full-modal-content {
  min-height: 100vh;
  position: relative;
}
.pb-full-modal-close {
  position: fixed;
  top: 28px;
  right: 40px;
  background: #333;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.pb-full-modal-close:hover {
  background: #000;
  transform: scale(1.1);
}
