/* ===== Global reset & basics ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #faf7fb;
  color: #2b1b2e;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Header & navigation ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e0d0ea;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  height: 46px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text-title {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: #3b1028;
}

.brand-text-tagline {
  font-size: 0.8rem;
  color: #7a4a7c;
}

.main-nav {
  display: flex;
  align-items: center;
}

/* Desktop nav */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
  color: #7a4a7c;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff83b0, #ffb86c);
  transition: width 0.22s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff83b0, #ffb86c);
  color: #3b1028 !important;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(255, 131, 176, 0.35);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7a4a7c;
}

/* ===== Layout wrappers ===== */

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

section {
  margin-bottom: 32px;
}

h1, h2, h3 {
  color: #2b0f30;
}

/* ===== Hero section ===== */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 20px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #ffe5f0 0, #faf7fb 55%, #ffe5d3 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.hero-text {
  flex: 1 1 280px;
}

.hero-text h1 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.hero-text p {
  margin-top: 4px;
  color: #6e4a6c;
}

.hero-img {
  flex: 1 1 260px;
}

.hero-img img {
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.hero button {
  margin-top: 10px;
}

/* ===== Card & content styling ===== */

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
}

.card h2, .card h3 {
  margin-top: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  width: 32%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* ===== Forms ===== */

form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #5b224f;
}

input, textarea, select {
  width: 100%;
  padding: 6px 8px;
  margin-top: 4px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #d3bfdc;
  font-family: inherit;
  font-size: 0.9rem;
  color: #2b1b2e;
  background: #ffffff;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #ff83b0;
  box-shadow: 0 0 0 1px rgba(255, 131, 176, 0.35);
}

button {
  background: #ff83b0;
  color: #3b1028;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}

button:hover {
  background: #ff9cc0;
}

/* ===== Footer ===== */

footer {
  border-top: 1px solid #e0d0ea;
  background: #ffffff;
  padding: 18px 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #7a4a7c;
}

/* ===== Responsive behavior ===== */

@media (max-width: 768px) {
  .header-inner {
    padding: 8px 12px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    right: 12px;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: none;
    min-width: 170px;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 6px 2px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  main {
    padding: 16px 12px 28px;
  }

  .hero {
    padding: 16px 14px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .gallery img {
    width: 100%;
  }
}
/* ===== Lightbox gallery ===== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-inner {
  max-width: 900px;
  width: 90%;
  position: relative;
}

.lightbox-inner img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  border-radius: 999px;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #3b1028;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
/* ===== Video thumbnail grid ===== */

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.video-thumb {
  flex: 1 1 32%;
  min-width: 200px;
}

.video-thumb-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.video-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.video-thumb-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-thumb-inner:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.video-thumb-inner:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .video-grid {
    flex-direction: column;
  }
}
/* Gallery: force row layout with wrapping */
.gallery{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.gallery a{
  flex: 1 1 220px;         /* responsive columns */
  max-width: 320px;
}

.gallery img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Video overlay (lightbox) */
.video-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.video-overlay.is-open{
  display: flex;
}

.video-inner{
  width: min(960px, 96vw);
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-close{
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

#video-player{
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Bridal show promo banner */
.event-banner {
  margin: 18px 0 24px;
}

.event-banner-link {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(231,173,166,0.18); /* uses your dusty-rose family */
}

.event-banner-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.event-banner-img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  flex: 0 0 auto;
}

.event-banner-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #3B1028; /* matches your darker brand tone */
  line-height: 1.25;
}

.event-banner-text strong {
  font-size: 1.05rem;
}

.event-banner-cta {
  margin-top: 4px;
  font-weight: 700;
}

/* Mobile layout */
@media (max-width: 640px) {
  .event-banner-link {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-banner-img {
    width: 100%;
    max-width: 520px;
  }
}
/* Make kit pages selection-only (no Add to Cart) */
.product-type-simple .single_add_to_cart_button {
  display: none;
}

/* Optional: hide price on single product page */
.single-product .summary .price {
  display: none;
}
/* Hide Add to cart on shop/category grids too (selection-only flow) */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: none !important;
}
/* === Weddingcam selection-only mode: remove Add to cart everywhere for kit products === */

/* Shop / category grids */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: none !important;
}

/* Single product page (covers multiple Storefront/Woo templates) */
.single-product .single_add_to_cart_button,
.single-product form.cart,
.single-product .cart {
  display: none !important;
}
/* Hide "Out of stock" notice and emoji on product pages and grids */
.woocommerce div.product p.stock,
.woocommerce ul.products li.product .stock,
.stock.out-of-stock {
  display: none !important;
}
/* Force-hide any stock status lines (covers Storefront variations) */
.woocommerce .stock,
.woocommerce p.stock,
.woocommerce span.stock,
.woocommerce div.product .stock,
.woocommerce ul.products li.product .stock,
.woocommerce ul.products li.product .stock.out-of-stock {
  display: none !important;
}
/* In case an emoji/status is injected via pseudo-elements */
.woocommerce .stock::before,
.woocommerce .stock::after {
  display: none !important;
  content: none !important;
}
.wc-agreement-text {
  color: #2B2B2B;
  line-height: 1.4;
}

.wc-agreement-text a {
  color: #7A3E5C;
  text-decoration: underline;
  font-weight: 600;
}
.wc-agreement-text,
.wc-agreement-text a {
  pointer-events: auto !important;
  cursor: pointer;
}

