/* ===== EDITOR CONTENT (bottom of page) ===== */
.bztr-editor-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.bztr-editor-content p {
  margin-bottom: 1em;
}

.bztr-editor-content a {
  color: inherit;
  text-decoration: underline;
}

/* ===== HERO ===== */
.bztr-hero {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.bztr-hero > img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.bztr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 64px;
}

.bztr-hero-content {
  max-width: 520px;
  color: #fff;
}

.bztr-hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.bztr-hero-content p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 28px;
  opacity: 0.92;
}

.bztr-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.bztr-hero-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.bztr-hero-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== SECTION COMMON ===== */
.bztr-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.bztr-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.bztr-section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #111;
}

.bztr-section-title em {
  font-style: italic;
  font-weight: 300;
}

.bztr-section-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.bztr-section-link:hover {
  gap: 14px;
}

.bztr-section-link svg {
  width: 16px;
  height: 16px;
}

/* ===== BENTO GRID ===== */
.bztr-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 12px;
}

.bztr-bento-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f0f0;
  display: block;
  text-decoration: none;
}

.bztr-bento-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.bztr-bento-item:nth-child(2) {
  grid-column: 3;
}

.bztr-bento-item:nth-child(3) {
  grid-column: 4;
}

.bztr-bento-item:nth-child(4) {
  grid-column: 3;
}

.bztr-bento-item:nth-child(5) {
  grid-column: 4;
}

.bztr-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bztr-bento-item:hover img {
  transform: scale(1.06);
}

.bztr-bento-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  color: #fff;
}

.bztr-bento-label h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bztr-bento-item:nth-child(1) .bztr-bento-label h3 {
  font-size: 22px;
}

/* Category without image fallback */
.bztr-bento-item--no-img {
  background: #f5f0eb;
  display: flex;
  align-items: flex-end;
}

.bztr-bento-item--no-img .bztr-bento-label {
  position: static;
  background: none;
  color: #111;
}

/* Category pills */
.bztr-cat-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.bztr-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.bztr-cat-pill:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.bztr-cat-pill svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.bztr-cat-pill:hover svg {
  opacity: 1;
}

/* ===== PRODUCTS GRID ===== */
.bztr-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bztr-p-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.bztr-p-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
}

.bztr-p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bztr-p-card:hover .bztr-p-card-img img {
  transform: scale(1.05);
}

.bztr-p-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 28px;
  padding: 0 14px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.bztr-p-card-quick {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  color: #111;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bztr-p-card:hover .bztr-p-card-quick {
  opacity: 1;
  transform: translateY(0);
}

.bztr-p-card-name {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bztr-p-card-price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.bztr-p-card-price del {
  text-decoration: line-through;
  color: #aaa;
  font-weight: 400;
  font-size: 14px;
  margin-right: 8px;
}

.bztr-p-card-price ins {
  text-decoration: none;
  font-weight: 700;
}

/* ===== STORY BANNER ===== */
.bztr-story-section {
  position: relative;
  margin: 0 40px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.bztr-story-bg {
  position: absolute;
  inset: 0;
}

.bztr-story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bztr-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42, 37, 32, 0.85) 0%, rgba(42, 37, 32, 0.4) 100%);
}

.bztr-story-content {
  position: relative;
  z-index: 1;
  padding: 80px;
  max-width: 550px;
  color: #fff;
}

.bztr-story-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c4a882;
  margin-bottom: 16px;
}

.bztr-story-content h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #fff;
}

.bztr-story-content h2 strong {
  font-weight: 800;
}

.bztr-story-content > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.bztr-story-stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.bztr-story-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #c4a882;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.bztr-story-stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== TESTIMONIAL ===== */
.bztr-testimonial-section {
  background: #fff;
  border-radius: 32px;
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
  padding: 64px 80px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.bztr-testimonial-overlap {
  margin-top: -60px !important;
}

.bztr-testi-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 20px;
}

.bztr-testi-stars svg {
  width: 18px;
  height: 18px;
  fill: #111;
}

.bztr-testi-text {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #333;
  max-width: 700px;
  margin: 0 auto 28px;
  transition: opacity 0.3s;
  min-height: 100px;
}

.bztr-testi-author {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
}

.bztr-testi-source {
  font-weight: 400;
  color: #999;
}

.bztr-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.bztr-testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s;
  cursor: pointer;
}

.bztr-testi-dot.active {
  background: #111;
  width: 24px;
  border-radius: 4px;
}

/* ===== MINI REVIEWS ===== */
.bztr-reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 40px 0;
}

.bztr-mini-review {
  background: #fafafa;
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s;
}

.bztr-mini-review:hover {
  transform: translateY(-4px);
}

.bztr-mini-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.bztr-mini-review-stars svg {
  width: 14px;
  height: 14px;
  fill: #111;
}

.bztr-mini-review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}

.bztr-mini-review-author {
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

/* ===== INSTAGRAM ===== */
.bztr-insta-section {
  padding: 80px 0 0;
}

.bztr-insta-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  margin-bottom: 32px;
  padding: 0 24px;
}

.bztr-insta-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #111;
  margin: 12px auto 0;
}

.bztr-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.bztr-insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  display: block;
}

.bztr-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bztr-insta-item:hover img {
  transform: scale(1.08);
}

.bztr-insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.bztr-insta-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.bztr-insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.bztr-insta-item:hover .bztr-insta-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.bztr-insta-handle {
  text-align: center;
  margin-top: 24px;
  padding-bottom: 64px;
}

.bztr-insta-handle a {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
  transition: border-color 0.2s;
  text-decoration: none;
}

.bztr-insta-handle a:hover {
  border-color: #111;
}

/* -- Smash Balloon override (inside our wrapper) -- */
.bztr-insta-sbi-wrap #sb_instagram {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.bztr-insta-sbi-wrap #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 4px !important;
  padding: 0 !important;
}

.bztr-insta-sbi-wrap .sbi_item {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.bztr-insta-sbi-wrap .sbi_photo_wrap {
  position: absolute !important;
  inset: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.bztr-insta-sbi-wrap .sbi_photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
}

.bztr-insta-sbi-wrap .sbi_photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  position: absolute !important;
  inset: 0 !important;
  transition: transform 0.5s ease !important;
}

.bztr-insta-sbi-wrap .sbi_item:hover .sbi_photo img {
  transform: scale(1.08) !important;
}

/* Hover overlay */
.bztr-insta-sbi-wrap .sbi_photo::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0) !important;
  transition: background 0.3s !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.bztr-insta-sbi-wrap .sbi_item:hover .sbi_photo::after {
  background: rgba(0, 0, 0, 0.15) !important;
}

/* Instagram icon on hover */
.bztr-insta-sbi-wrap .sbi_photo svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0) !important;
  z-index: 3 !important;
  color: #fff !important;
  opacity: 0 !important;
  transition: transform 0.3s, opacity 0.3s !important;
  width: 24px !important;
  height: 24px !important;
}

.bztr-insta-sbi-wrap .sbi_item:hover .sbi_photo svg {
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}

/* Hide SBI default header, load more, follow btn */
.bztr-insta-sbi-wrap .sb_instagram_header,
.bztr-insta-sbi-wrap #sbi_load,
.bztr-insta-sbi-wrap .sbi_follow_btn,
.bztr-insta-sbi-wrap .sbi_header_text,
.bztr-insta-sbi-wrap .sbi_header_img {
  display: none !important;
}

/* Hide SBI screenreader text and play/carousel icons from our overlay */
.bztr-insta-sbi-wrap .sbi-screenreader {
  display: none !important;
}

/* ===== ANIMATIONS ===== */
.bztr-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bztr-reveal.bztr-visible {
  opacity: 1;
  transform: translateY(0);
}

.bztr-reveal-delay-1 {
  transition-delay: 0.1s;
}

.bztr-reveal-delay-2 {
  transition-delay: 0.2s;
}

.bztr-reveal-delay-3 {
  transition-delay: 0.3s;
}

.bztr-reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */

/* 1024px breakpoint */
@media (max-width: 1024px) {
  .bztr-hero-content h1 {
    font-size: 32px;
  }

  .bztr-hero-overlay {
    padding: 0 40px;
  }

  .bztr-section {
    padding: 64px 24px;
  }

  .bztr-section-title {
    font-size: 32px;
  }

  .bztr-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }

  .bztr-bento-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .bztr-bento-item:nth-child(2),
  .bztr-bento-item:nth-child(3),
  .bztr-bento-item:nth-child(4),
  .bztr-bento-item:nth-child(5) {
    grid-column: auto;
  }

  .bztr-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bztr-story-section {
    margin: 0 24px;
    min-height: 400px;
    border-radius: 24px;
  }

  .bztr-story-content {
    padding: 48px;
  }

  .bztr-story-content h2 {
    font-size: 28px;
  }

  .bztr-testimonial-section {
    margin: -40px 24px 0;
    padding: 48px 40px;
  }

  .bztr-testi-text {
    font-size: 18px;
  }

  .bztr-reviews-row {
    grid-template-columns: 1fr;
    padding: 32px 24px 0;
  }

  .bztr-insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bztr-insta-sbi-wrap #sbi_images {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* 768px breakpoint */
@media (max-width: 768px) {
  .bztr-hero > img {
    height: 420px;
  }

  .bztr-hero-content h1 {
    font-size: 26px;
  }

  .bztr-hero-content p {
    font-size: 15px;
  }

  .bztr-hero-overlay {
    padding: 0 24px;
  }

  .bztr-section {
    padding: 48px 16px;
  }

  .bztr-section-title {
    font-size: 26px;
  }

  .bztr-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bztr-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bztr-bento-item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .bztr-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bztr-p-card-img {
    aspect-ratio: 1;
    border-radius: 14px;
  }

  .bztr-p-card-quick {
    display: none;
  }

  .bztr-story-section {
    min-height: auto;
    border-radius: 20px;
    margin: 0 16px;
    overflow: visible;
  }

  .bztr-story-content {
    padding: 32px 32px 40px;
  }

  .bztr-story-content h2 {
    font-size: 24px;
  }

  .bztr-story-stats {
    gap: 24px 32px;
    flex-wrap: wrap;
  }

  .bztr-story-stat {
    min-width: calc(50% - 32px);
  }

  .bztr-story-stat-num {
    font-size: 24px;
  }

  .bztr-story-stat-label {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .bztr-testimonial-section {
    padding: 36px 24px;
    margin: 24px 16px 0 !important;
    border-radius: 20px;
  }

  .bztr-testi-text {
    font-size: 16px;
    min-height: 120px;
  }

  .bztr-cat-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .bztr-cat-pills::-webkit-scrollbar {
    display: none;
  }

  .bztr-cat-pill {
    flex-shrink: 0;
    opacity: 1 !important;
    transform: none !important;
    white-space: nowrap;
  }

  .bztr-reviews-row {
    grid-template-columns: 1fr;
    padding: 32px 24px 0;
  }

  .bztr-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bztr-insta-sbi-wrap #sbi_images {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .bztr-cat-pills {
    gap: 8px;
  }
}

/* 480px breakpoint */
@media (max-width: 480px) {
  .bztr-hero > img {
    height: 340px;
  }

  .bztr-hero-content h1 {
    font-size: 22px;
  }

  .bztr-hero-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .bztr-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bztr-insta-sbi-wrap #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .bztr-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bztr-story-stats {
    flex-wrap: wrap;
  }
}
