/* ==============================
   CSS Reset / Normalize
   ============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Inter', sans-serif; /* default body font */
  font-size: 16px;
  line-height: 1.6;
  color: #2f2f2f;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/* ==============================
   Headings
   ============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2f2f2f;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.75rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.25rem;
}

/* ==============================
   Paragraphs
   ============================== */
p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1em;
  color: #4a4a4a;
}

/* ==============================
   Spans
   ============================== */
span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: inherit;
}

/* ==============================
   Responsive Typography
   ============================== */

/* Headings */
h1 {
  font-size: clamp(
    2rem,
    5vw,
    3rem
  ); /* min 2rem, scales with viewport, max 3rem */
}
h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}
h5 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}
h6 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* Paragraphs */
p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.5;
  margin-bottom: 1em;
}

/* Spans */
span {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.hidden{
  display: none !important;
}

/* ===============================
   ThriftyWedsites – Main Styles
   =============================== */

:root {
  /* --pink-bg: #fde6ea;
  --pink-accent: #f5a7b8;
  --pink-soft: #fff3f6; */
  --pink-bg: #ffcbe3;
  --pink-accent: #e17f94;
  --pink-accent-dark: #c5667b;
  /* --pink-heading-bg: #ffe4eb; */
  --pink-heading-bg-main: linear-gradient(
    135deg,
    #fff0f4,  /* very pale blush */
    #ffe3eb,  /* soft light pink */
    #fcccdb,  /* gentle pastel rose */
    #fdb4d6
  );

  --pink-heading-bg: linear-gradient(
    180deg,
    #fff0f4,  /* very pale blush */
    #ffe3eb,  /* soft light pink */
    #fcccdb,  /* gentle pastel rose */
    #fdb4d6   /* muted pink */
  );

  --pink-soft: #fff3f6;
  --text-dark: #2f2f2f;
  --text-muted: #7a7a7a;
  --radius-lg: 18px;
  --radius-sm: 12px;
}

@keyframes subtlePinkFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

html {
  scroll-behavior: smooth;
}

/* GLOBAL */
body {
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.7;
}

a {
  color: var(--text-dark);
  text-decoration: none;
}

a:hover {
  color: var(--pink-accent);
}

section {
  position: relative;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
}

.text-link{
  color: var(--pink-accent);
}

.text-link:hover{
  color: var(--pink-accent-dark) !important;
}

/* ================= HEADER ================= */
.site-header {
  background: #ffffff;
}

.site-header.active-scroll {
    box-shadow: 0 4px 12px rgba(241, 156, 190, 0.3),  /* soft rose shadow */
                0 2px 6px rgba(225, 127, 148, 0.2);   /* muted pink accent */
    transition: box-shadow 0.3s ease-in-out;
}

.site-header .nav-link {
  color: var(--text-muted);
  font-weight: 500;
}

.site-header .nav-link:hover {
  color: var(--pink-accent);
}

/* ================= HEADER (STICKY & VISIBLE) ================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Prevent content jump */
body {
  padding-top: 70px;
}

[id] {
  scroll-margin-top: 70px; /* set this to your header height */
}

/* ================= MOBILE NAV ================= */

.navbar {
  padding: 12px 0;
}

.navbar-brand {
  font-size: 20px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-muted);
}

.navbar-nav .nav-link:hover {
  color: var(--pink-accent);
}

/* ================= ACTIVE MENU LINK ================= */
.navbar-nav .nav-link.active {
  color: var(--pink-accent);
  font-weight: 600;
  border-bottom: 2px solid var(--pink-accent);
}

/* ================= HERO ================= */
.hero-section {
  background: var(--pink-heading-bg-main);  
}

.hero-section h1 {
  letter-spacing: -0.5px;
}

.hero-section .btn {
  background: var(--pink-accent);
  border: none;
}

/* ================= ABOUT ================= */
.about-section h2 {
  margin-bottom: 15px;
}
.about-section {
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-section .tagline {
  font-size: 1.2rem;
  color: var(--pink-accent);
}

.about-section .description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-section .about-features li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-section .about-img {
  max-width: 100%;
  height: auto;
}

/* Button */
.about-section .btn {
  background: var(--pink-accent);
  border: none;
  font-weight: 600;
  transition: 0.3s;
}


/* ================= HOW IT WORKS ================= */
.how-it-works-section {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
}

.step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Step images */
.step-image {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 20px;
}

/* Typography spacing */
.step-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ================= TEMPLATES ================= */

.template-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Lift on hover / focus */
.template-card:hover,
.template-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.template-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: filter 0.35s ease;
}

.template-card:hover .template-image img,
.template-card:focus-visible .template-image img {
  filter: brightness(0.85);
}

/* Name bar – default */
.template-name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;

  background: linear-gradient(125deg, 
    #f5b8c5, /* softer muted blush */ 
    #eb7bb1, /* gentle pastel pink */ 
    #e970c1, /* warm rose pink */ 
    #eb7bb1, /* gentle pastel pink */ 
    #f5b8c5 /* back to soft blush */);
    background-size: 380% 380%;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 1rem;
  text-align: center;

  opacity: 0.98;

  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.3s ease,
    opacity 0.25s ease, backdrop-filter 0.3s ease;

  z-index: 2;
}

/* Secondary line (hidden by default) */
.template-name span {
  display: none;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hover / Focus – expand overlay */
.template-card:hover .template-name,
.template-card:focus-visible .template-name {
  height: 100%;
  font-size: 1.3rem;
  opacity: 1;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Reveal secondary text */
.template-card:hover .template-name span,
.template-card:focus-visible .template-name span {
  display: block;
  opacity: 0.8;
  transform: translateY(0);
}

.tag{
  background: var(--pink-soft) !important;
  border: 1px solid var(--pink-bg);
}


/* ================= MOBILE TAP BEHAVIOR ================= */
/* First tap reveals overlay, second tap opens link */
@media (hover: none) {
  .template-card:active .template-name {
    height: 100%;
    font-size: 1.3rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .template-card:active .template-name span {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* ===============================
   SORT BAR – SEARCH (SCOPED)
================================ */

.sort-bar .search-wrap {
    position: relative;
}

.sort-bar .search-input {
    padding-left: 42px;
    height: 42px;
    min-width: 220px;
    font-size: 0.9rem;
    background: #fff;
    transition: all 0.2s ease;
}

.sort-bar .search-input::placeholder {
    opacity: 0.5;
}

.sort-bar .search-input:focus {
    outline: none;
    border-color: var(--pink-accent);
    box-shadow: 0 0 0 2px rgba(225, 127, 148, 0.25);
}

/* SEARCH ICON */
.sort-bar .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--pink-accent);
    pointer-events: none;
}


/* ===============================
   SORT BAR – SELECTS
================================ */

.sort-bar select.form-select {
    height: 42px;
    font-size: 0.85rem;
}

/* ===============================
   MOBILE REFINEMENT
================================ */


/* ================= FEATURES ================= */
.features-section {
  background: var(--pink-heading-bg);  
  background-size: 150% 150%;
}

/* Feature Card */
.feature-card {
  display: flex;
  align-items: stretch; /* full height for icon */
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);

  /* Make all cards same height */
  height: 80px;
}

/* Card text */
.feature-card p {
  margin: 0;
  padding: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1; /* allow text to take remaining space */
  display: flex;
  align-items: center;
}

/* Icon container (full height vertical bar) */
.feature-icon {
  width: 60px;
  /* background: var(--pink-accent); */
  background: linear-gradient(
    125deg,
    #f5b8c5,  /* softer muted blush */
    #f069aa,  /* gentle pastel pink */
    #f161c1,  /* warm rose pink */
    #f069aa,  /* gentle pastel pink */
    #f5b8c5   /* back to soft blush */
  );

  background-size: 380% 380%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icon image */
.feature-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.feature-icon i {
  font-size: 28px;
  color: #ffffff;
  line-height: 1;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* ================= PRICING ================= */

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid #eee;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
}

.pricing-card h4 {
  margin: 15px 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-accent);
  font-family: 'Inter', sans-serif;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 0;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Icons for list items */
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #f44336; /* Red for expensive */
}

.pricing-card.highlight ul li::before {
  color: var(--pink-accent);
}

/* Highlight card */
.pricing-card.highlight {
  border-color: var(--pink-accent);
  background: var(--pink-soft);
}

/* Badge */
.pricing-card .badge {
  position: absolute;
  top: -20px;
  right: -10px;
  width: fit-content;
  background-color: var(--pink-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ================= FAQ ================= */
.faq-section {
  background: #ffffff;
}

.accordion-item {
  border: none;
}
.accordion-button {
  background: var(--pink-soft);
  /* background: var(--pink-heading-bg); */

  background-size: 230% 230%;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
}

.accordion-button:not(.collapsed) {
  background: var(--pink-bg);
  
  background-size: 280% 280%;
  color: var(--text-dark);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:focus-visible {
  outline: 2px solid var(--pink-accent);
}
.accordion-header {
  font-family: 'Inter', sans-serif;
  border: none;
}

/* ================= CONTACT ================= */
.contact-section {
  background: var(--pink-heading-bg);  
  background-size: 105% 105%;
}

.contact-section h2 {
  font-weight: 700;
}

.contact-section p {
  color: var(--text-muted);
  max-width: 420px;
}

/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.contact-form .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.contact-form .form-control:focus {
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 0.15rem rgba(245, 167, 184, 0.35);
}

/* Button already uses your design system */
.contact-form .btn {
  padding: 12px;
  font-weight: 600;
}

/* ================= BUTTON OVERRIDES ================= */
.btn-primary {
  background: var(--pink-accent);
  border: none;
}

.btn-primary:hover {
  background: #ec8fa3;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-color: var(--pink-accent);
  color: var(--pink-accent);
}

.btn-outline-primary:hover {
  background: var(--pink-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==============================
   Design System Buttons
   ============================== */
button.btn:not(.navbar-toggler),
a.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  padding: 0.6em 1.5em;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.4;
  text-decoration: none;
  box-sizing: border-box;
}

button.btn:not(.navbar-toggler,#apply_voucher),
a.btn{
  border-radius: var(--radius-sm) !important;
}

button.btn:hover:not(.navbar-toggler,#apply_voucher),
a.btn:hover{
  transform: translateY(-2px);
}

a.btn:not(.btn-outline-secondary){
  border: 2px solid transparent;
}

/* Base Button Improvements */
button.btn:not(.navbar-toggler),
a.btn {
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.35s ease;
}


/* Primary Button */
button.btn.btn-primary:not(.navbar-toggler),
a.btn.btn-primary {

  background: linear-gradient(
    135deg,
    #c5667b,  /* softer muted blush */
    #ffb6d9,  /* gentle pastel pink */
    #f48fb1,  /* warm rose pink */
    #ffb6d9,  /* gentle pastel pink */
    #c5667b   /* back to soft blush */
  );

background-size: 380% 380%;

animation: subtlePinkFlow 7s ease-in-out infinite;

  border: none;
  color: #ffffff;

  box-shadow: 0 6px 18px rgba(240, 98, 146, 0.25);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

button.btn.btn-primary:hover:not(.navbar-toggler),
a.btn.btn-primary:hover {

  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(240, 98, 146, 0.35);

}


/* Outline Button */ 
button.btn.btn-outline-primary:not(.navbar-toggler), 
a.btn.btn-outline-primary { 
  background: transparent; 
  color: var(--pink-accent); 
  border: 2px solid var(--pink-accent); 
} 

button.btn.btn-outline-primary:hover:not(.navbar-toggler), 
a.btn.btn-outline-primary:hover { 
  background: var(--pink-accent); 
  color: #ffffff; 
}


/* Small Button */
button.btn.btn-sm:not(.navbar-toggler),
a.btn.btn-sm {
  padding: 0.35em 0.9em;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}


/* Large Button */
button.btn.btn-lg:not(.navbar-toggler),
a.btn.btn-lg {
  padding: 0.85em 2em;
  font-size: clamp(1rem, 3vw, 1.25rem);
}


/* Full width */
button.btn.btn-block:not(.navbar-toggler),
a.btn.btn-block {
  display: block;
  width: 100%;
}


/* Disabled */
button.btn:disabled:not(.navbar-toggler),
a.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* ================= PRODUCTS ================= */
.products-hero {
  background: var(--pink-heading-bg);  
  background-size: 150% 150%;
  padding: 6rem 0;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Image stays on top */
.product-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

/* Content wrapper */
.product-card .p-4 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push button to bottom */
.product-card .btn {
  margin-top: auto;
}

.form-select,
.form-control {
  border-color: var(--pink-bg, #f5a7b8);
}

/* Mouse click: no outline, keep pink border */
.form-select:focus:not(:focus-visible),
.form-control:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
  border-color: var(--pink-accent, #f5a7b8);
}

/* Keyboard navigation: visible pink ring */
.form-select:focus-visible,
.form-control:focus-visible {
  outline: none;
  border-color: var(--pink-accent, #f5a7b8);
  box-shadow: 0 0 0 2px rgba(245, 167, 184, 0.4);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
}

/* Base badge style */
.product-badges .badge {
  display: inline-block;
  padding: 4px 10px;
  /* border-radius: 12px; */
  border-radius: var(--bs-badge-border-radius);
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
  margin-bottom: 4px;
  border: 1px solid transparent;
}

/* Wedding template category badges - soft, pastel, minimalistic */
.badge-classic       { background-color: #fef3c7; color: #b45309; }  /* soft yellow */
.badge-modern        { background-color: #d1fae5; color: #065f46; }  /* mint green */
.badge-minimalist    { background-color: #f3f4f6; color: #374151; }  /* light gray */
.badge-rustic        { background-color: #fde2c7; color: #b45309; }  /* peachy brown */
.badge-vintage       { background-color: #ede9fe; color: #5b21b6; }  /* lavender */
.badge-bohemian      { background-color: #fce7f3; color: #9d174d; }  /* soft pink */
.badge-beach         { background-color: #dbeafe; color: #1e3a8a; }  /* soft blue */
.badge-garden        { background-color: #dcfce7; color: #166534; }  /* soft green */
.badge-fairytale     { background-color: #ffe4e6; color: #be123c; }  /* blush pink */
.badge-luxury        { background-color: #fef9c3; color: #a16207; }  /* soft gold */
.badge-romantic      { background-color: #ffe4f0; color: #9d174d; }  /* pastel rose */
.badge-destination   { background-color: #e0f2fe; color: #0369a1; }  /* sky blue */
.badge-elegant       { background-color: #ede9fe; color: #4338ca; }  /* pastel purple */
.badge-chic          { background-color: #fef3c7; color: #b45309; }  /* soft yellow */
.badge-traditional   { background-color: #f3f4f6; color: #1f2937; }  /* muted gray */
.badge-artistic      { background-color: #ffedd5; color: #c2410c; }  /* peach/orange */
.badge-industrial    { background-color: #e5e7eb; color: #374151; }  /* muted gray */
.badge-intimate      { background-color: #fde2e2; color: #b91c1c; }  /* soft red */
.badge-outdoor       { background-color: #dcfce7; color: #166534; }  /* soft green */
.badge-glamorous     { background-color: #fff7ed; color: #c2410c; }  /* soft gold/orange */

/* ================= PRODUCTS PAGINATION ================= */
.products-pagination .pagination {
  margin: 0;
  padding: 0;
}

.products-pagination .page-item {
  transition: all 0.2s ease;
}

.products-pagination .page-link {
  color: #999; /* inactive text */
  background: transparent; /* no border */
  font-weight: 500;
  border-radius: 100% !important;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.25s ease;
}

.products-pagination .page-link:hover {
  color: var(--pink-accent, #f5a7b8);
  background: rgba(245, 167, 184, 0.1); /* subtle pink hover */
  text-decoration: none;
}

.products-pagination .page-item.active .page-link {
  color: #fff;
  background: var(--pink-accent, #f5a7b8);
}

.products-pagination .page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}

/* ================= PRODUCT DETAILS PAGE STYLES ================= */
body.page-product-details .products-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
  text-align: center;
}

body.page-product-details .products-hero h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

body.page-product-details .products-hero p {
  max-width: 600px;
  margin: 0 auto;
}

body.page-product-details .product-details h2.product-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--pink-accent);
}

body.page-product-details .product-details p.product-short-desc {
  font-family: 'Inter', sans-serif;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

body.page-product-details .product-details ul.product-info li {
  font-family: 'Inter', sans-serif;
  color: #555;
  margin-bottom: 0.5rem;
}

body.page-product-details .product-details .btn-primary {
  border: none;
  font-weight: 600;
}

body.page-product-details .modern-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #eee;
  margin-bottom: 2rem;
}

body.page-product-details .modern-tabs button {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #999;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

body.page-product-details .modern-tabs button.active {
  color: #ff6b81;
  border-bottom: 3px solid #ff6b81;
}

body.page-product-details .modern-tabs-content .tab-content {
  color: #555;
  line-height: 1.6;
}


/* ================= CHECKOUT PAGE ================= */
body.page-checkout .checkout-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

body.page-checkout .checkout-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #333;
}

body.page-checkout .checkout-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Checkout Form Card */
body.page-checkout .checkout-card {
  border: 1px solid #eaeaea;
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body.page-checkout .checkout-card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

body.page-checkout .checkout-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
}

body.page-checkout .checkout-card .form-control {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

body.page-checkout .checkout-card .btn {
  padding: 0.75rem;
  font-size: 1rem;
}

body.page-checkout .manual-payment-instructions {
  font-family: 'Inter', sans-serif;
  color: #555;
  list-style-type: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Buttons */
body.page-checkout .checkout-card .btn-outline-secondary {
  margin-top: 0.5rem;
}

/* ================= ORDER SUMMARY ================= */
body.page-checkout .order-summary {
  border: 1px solid #eaeaea;
  border-radius: 0.75rem;
  background-color: #f8f9fa;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.page-checkout .order-summary h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

body.page-checkout .order-summary span {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
}

body.page-checkout .order-summary hr {
  border-top: 1px solid #ddd;
  margin: 0.5rem 0 0.75rem;
}

body.page-checkout .order-summary .fw-bold {
  font-size: 1.1rem;
  color: #333;
}
body.page-checkout .order-summary .order-product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* ================= THANK YOU PAGE ================= */

/* Hero Section */
.page-thankyou .checkout-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-thankyou .checkout-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-thankyou .checkout-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.page-thankyou .thankyou-icon {
  display: inline-block;
}

/* Instructions Section */
.page-thankyou .thankyou-instructions {
  padding: 60px 20px;
  border-radius: var(--radius-lg);
}

.page-thankyou .thankyou-instructions h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.page-thankyou .thankyou-instructions p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.page-thankyou .thankyou-instructions p a{
  color: var(--pink-accent);
}
.page-thankyou .thankyou-instructions p a:hover{
  color: var(--pink-accent-dark);
}

.page-thankyou .thankyou-instructions ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.page-thankyou .thankyou-instructions ul li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0;
  color: var(--text-dark);
}

/* Buttons */
.page-thankyou .btn-primary {
  background-color: var(--pink-accent);
  border-color: var(--pink-accent);
  color: #fff;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.page-thankyou .btn-primary:hover {
  background-color: #cf6a7d; /* slightly darker accent on hover */
  border-color: #cf6a7d;
}

.page-thankyou .btn-outline-secondary {
  color: var(--pink-accent);
  border-color: var(--pink-accent);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.page-thankyou .btn-outline-secondary:hover {
  background-color: var(--pink-accent);
  color: #fff;
}

/* ================= CONTACT PAGE ================= */

/* Hero Section */
.page-contact .contact-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-contact .contact-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-contact .contact-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Contact Form Section */
.page-contact .contact-form-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.page-contact .contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

.page-contact .contact-form .form-control {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.page-contact .contact-form .form-control:focus {
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 0.25rem rgba(225, 127, 148, 0.2);
}

.page-contact .contact-form button {
  background: var(--pink-accent);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}



/* Footer */
.page-contact .footer-section {
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  background: var(--pink-soft);
}

/* ================= CLIENT FORM PAGE ================= */
.page-client-form {
  font-family: 'Inter', sans-serif;
}

/* Hero Section */
.page-client-form .client-form-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}
.page-client-form .client-form-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}
.page-client-form .client-form-hero p {
  font-size: 1.1rem;
  color: #5a5a5a;
}

/* Multi-Step Form Container */
.page-client-form .multi-step-form {
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Form Steps */
.page-client-form .form-step {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
.page-client-form .form-step.active {
  display: block;
}

/* Step Headings */
.page-client-form .form-step h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e17f94; /* accent pink */
}

/* Inputs */
.page-client-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-client-form input[type="color"] {
    -webkit-appearance: none; /* remove default styles for WebKit */
    -moz-appearance: none;    /* remove default styles for Firefox */
    appearance: none;
    width: 40px;              /* swatch width */
    height: 40px;             /* swatch height */
    border: 2px solid #ccc;   /* light border */
    border-radius: 50%;       /* rounded corners */
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* WebKit color picker removal hack */
.page-client-form input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
    border-radius: 50%;
}

.page-client-form input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
}

/* Hover effect for nicer interaction */
.page-client-form input[type="color"]:hover {
    transform: scale(1.1);
    border-color: #999;
}

/* Focus outline for accessibility */
.page-client-form input[type="color"]:focus {
    outline: 2px solid #666;
    outline-offset: 2px;
}

.page-client-form .form-control:focus {
  border-color: #e17f94;
  box-shadow: 0 0 0 3px rgba(225, 127, 148, 0.15);
}

/* Textarea */
.page-client-form textarea.form-control {
  resize: vertical;
}

/* Buttons */
.page-client-form .btn {
  padding: 0.6rem 1.8rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.page-client-form .btn-primary {
  background-color: #e17f94;
  border: none;
}
.page-client-form .btn-primary:hover {
  background-color: #d66d80;
}
.page-client-form .btn-secondary {
  background-color: #f2f2f2;
  color: #2f2f2f;
  border: none;
}
.page-client-form .btn-secondary:hover {
  background-color: #e6e6e6;
}
.page-client-form .form-step {
  display: none; /* hide all steps by default */
  transition: opacity 0.3s ease-in-out;
}
.page-client-form .form-step.active {
  display: block; /* show the active step */
}

/* Floating labels */
.form-floating-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-floating-group input,
.form-floating-group textarea {
  width: 100%;
  padding: 1rem 0.75rem 0.25rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-floating-group input:focus,
.form-floating-group textarea:focus {
  border-color: var(--pink-accent);
}
.form-floating-group label {
  position: absolute;
  top: 0.8rem;
  left: 0.75rem;
  font-size: 0.9rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease-out;
}
.form-floating-group input:focus + label,
.form-floating-group textarea:focus + label,
.form-floating-group input:not(:placeholder-shown) + label,
.form-floating-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.65rem;
  font-size: 0.75rem;
  color: var(--pink-accent);
  background: #fff;
  padding: 0 0.25rem;
}

.form-floating-group select {
  width: 100%;
  padding: 1rem 0.75rem 0.25rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
  appearance: none; /* optional: hides default arrow for styling */
}

.form-floating-group select:focus {
  border-color: var(--pink-accent);
}

/* Floating label for select */
.form-floating-group select:focus + label,
.form-floating-group select:valid + label {
  top: -0.5rem;
  left: 0.65rem;
  font-size: 0.75rem;
  color: var(--pink-accent);
  background: #fff;
  padding: 0 0.25rem;
}
.website-input-group {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.website-input-group input.form-control {
    width: 100%;
    padding-left: 70px !important; /* reserve space for domain text */
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    box-sizing: border-box;
    text-align: left; 
}

.website-input-group .domain-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    padding: 0 8px;
    font-size: 1rem;
    color: #888;
    border: 1px solid #ccc;
    border-right: unset;
    border-radius: 6px 0px 0px 6px;
    pointer-events: none;
}




/* Dropzone */
.event-dropzone {
  border: 2px dashed var(--pink-accent);
  border-radius: var(--radius-sm);
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  padding: 1rem;
  transition: all 0.25s ease;
}
.event-dropzone:hover {
  background: var(--pink-bg);
}
.dropzone-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.dropzone-content small {
  color: var(--text-muted);
}

.event-dropzone.file-selected {
  border-color: var(--pink-accent);
  background: #fff0f5; /* soft highlight */
}

.dropzone-filename {
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
  color: var(--text-dark);
}

/* ================== CUSTOM FLATPICKR ================== */
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekdays,
span.flatpickr-weekday,
.flatpickr-day.selected {
  background-color: var(--pink-accent) !important;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: var(--pink-accent) !important;
}
.flatpickr-days .flatpickr-day {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 6px;
  margin: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flatpickr-day:hover {
    background-color: #ffb3d6 !important;
    color: #000;
}

.flatpickr-day.today {
    border-color: #ff8fc7 !important;
}



/* ================= STEP COUNTER ================= */
.page-client-form .step-counter {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.page-client-form .step-counter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
  transform: translateY(-50%);
  z-index: 0;
}

.page-client-form .step-counter .step {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-weight: 500;
  color: #999;
  cursor: default;
  transition: all 0.3s ease;
}

.page-client-form .step-counter .step.active {
  background: #e17f94;
  border-color: #e17f94;
  color: #fff;
}

/* ================= TESTIMONIAL CARDS ================= */
.testimonials-section {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  padding: 5rem 0 6rem 0;
  overflow: hidden;
}

.testimonial-slider .testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  margin: 0 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.testimonials-section .slick-list {
  overflow: unset !important;
}
/* Center slide - largest & elevated */
.testimonial-slider .slick-center {
  transform: scale(1.15);
  z-index: 3;
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Left/Right side slides - angled & smaller */
.testimonial-slider .slick-slide:not(.slick-center) {
  transform: scale(0.8) rotateY(-15deg);
  opacity: 0.5;
  z-index: 1;
  transition: all 0.5s ease;
}

/* Right side slide rotation */
.testimonial-slider .slick-slide.slick-active:not(.slick-center) {
  transform: scale(0.8) rotateY(15deg);
}

/* Ensure smooth transitions for content */
.testimonial-slider .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  transition: all 0.5s ease;
}

.testimonial-slider .testimonial-content p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial-slider .testimonial-content h5 {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.testimonial-slider .testimonial-content small{
  font-family: 'Inter', sans-serif;
  font-size: 0.675rem;
  color: var(--text-muted);
}

/* Slick dots styling */
.slick-dots {
  bottom: -70px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--pink-accent);
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--pink-accent);
}

/* ================= FAQ PAGE ================= */

/* Hero Section */
.page-faqs .faq-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-faqs .faq-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-faqs .faq-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ================= RSVP PAGE ================= */

/* Hero Section */
.page-rsvp .rsvp-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-rsvp .rsvp-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-rsvp .rsvp-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}
.rsvp-form {
  max-width: 500px; /* Adjust as needed */
  width: 100%;
  margin: 2rem auto; /* centers the form */
}

/* ================= PARTNERS PAGE ================= */

/* Hero Section */
.page-partners .partners-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-partners .partners-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-partners .partners-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.page-partners .form-floating-group input{
  padding: 12px 14px;
}

/* Form */
.partners-form {
  max-width: 500px;
  width: 100%;
  margin: 2rem auto;
}

/* Card Wrapper (optional but matches RSVP feel) */
.partners-card {
  background: #fff;
  padding: 1rem 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Business Card - Standalone */
.partner-biz-card {
    background: var(--pink-heading-bg); /* Using your 180deg gradient */
    position: relative;
}

/* Adding a decorative "glass" effect to the QR container */
.qr-wrapper {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.qr-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(225, 127, 148, 0.2) !important;
}

.partner-biz-card h2 {
    font-family: 'Playfair Display', serif;
}

/* Subtle corner accent */
.partner-biz-card::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--pink-accent) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .partner-biz-card {
        text-align: center !important;
    }
    .partner-biz-card .text-start {
        text-align: center !important;
    }
}
@media print {
    /* Hide everything except the card */
    body * { visibility: hidden; }
    #biz-card-canvas-area, #biz-card-canvas-area * { visibility: visible; }
    #biz-card-canvas-area {
        position: absolute;
        left: 0;
        top: 0;
    }
    .partner-biz-card {
        text-align: left !important;
    }
    .partner-biz-card .text-start {
        text-align: left !important;
    }
    /* Stop the browser from stripping the pink background */
    .partner-biz-card {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}



.templates-empty-state {
    padding: 60px 30px;
    max-width: 720px;
    margin: 0 auto;
}

.templates-empty-state .empty-icon {
    color: #0d6efd; /* Bootstrap primary */
    opacity: 0.85;
}

.templates-empty-state h4 {
    font-size: 1.4rem;
}

.templates-empty-state p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.prenup-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.prenup-item.card,
.event-item.card {
  border: none;
}
.prenup-item img {
  object-fit: cover;
}

.prenup-item .dropzone-content {
  font-size: 0.8rem;
  color: #6c757d;
}

.reupload-msg {
  font-size: 0.7rem;
  color: #dc3545; /* Bootstrap red */
}

/* ghost item while dragging */
.sortable-ghost {
    opacity: 0.5;
    border: 2px dashed #007bff;
}

.item {
  cursor: grab; /* draggable area */
}

.item:active {
  cursor: grabbing;
}

/* Inputs inside .item should not show grab cursor */
.item input,
.item textarea,
.item select,
.item button,
.item label {
  cursor: text;
}
.item .event-dropzone{
  cursor: pointer !important;
}

/* Item picked up */
.sortable-chosen {
  background-color: #ffeeba;
  border-color: #ffc107;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.no-drag {
  cursor: auto; /* normal cursor inside inputs */
}



/* =====================================================
   TESTIMONIALS PAGE
===================================================== */

/* ================= HERO ================= */

.page-testimonials .testimonials-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 1rem;
}

.page-testimonials .testimonials-hero h1 {
  margin-bottom: 1rem;
}

.page-testimonials .testimonials-hero p {
  max-width: 720px;
  margin: 0 auto;
}

/* ================= PAGE SECTION ================= */

.page-testimonials .testimonials-page-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

/* ================= TESTIMONIAL CARD ================= */

.page-testimonials .testimonial-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-testimonials .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ================= TEXT ================= */

.page-testimonials .testimonial-text {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

/* ================= PHOTO ================= */

.page-testimonials .testimonial-photo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.75rem auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* ================= NAME & DATE ================= */

.page-testimonials .testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.page-testimonials .testimonial-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ================= EMPTY STATE ================= */

.page-testimonials .testimonials-empty {
  padding: 4rem 1rem;
  text-align: center;
}

.page-testimonials .testimonials-empty h4 {
  font-weight: 700;
}

.page-testimonials .testimonials-empty p {
  color: var(--text-muted);
}

/* =====================================================
   TESTIMONIALS PAGINATION (COPIED FROM PRODUCTS)
===================================================== */

.testimonials-pagination .pagination {
  margin: 0;
  padding: 0;
}

.testimonials-pagination .page-item {
  transition: all 0.2s ease;
}

.testimonials-pagination .page-link {
  color: #999; /* inactive text */
  background: transparent; /* no border */
  font-weight: 500;
  border-radius: 100% !important;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: all 0.25s ease;
}

.testimonials-pagination .page-link:hover {
  color: var(--pink-accent, #f5a7b8);
  background: rgba(245, 167, 184, 0.1); /* subtle pink hover */
  text-decoration: none;
}

.testimonials-pagination .page-item.active .page-link {
  color: #fff;
  background: var(--pink-accent, #f5a7b8);
}

.testimonials-pagination .page-item.disabled .page-link {
  color: #ccc;
  pointer-events: none;
}

/* =====================================================
   TESTIMONIALS POPUP (MAGNIFIC POPUP)
===================================================== */

.mfp-bg {
  background: rgba(0, 0, 0, 0.7) !important; /* dark semi-transparent overlay */
}

.testimonial-popup-content {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  position: relative;
}

.testimonial-popup-content .popup-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.testimonial-popup-content .popup-name {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-popup-content .popup-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.testimonial-popup-content .popup-description {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* ================= CLOSE BUTTON ================= */
.mfp-close {
  color: #fff;
  font-size: 28px;
  line-height: 28px;
  opacity: 0.9;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
}

.mfp-close:hover {
  opacity: 1;
  color: var(--pink-accent, #f5a7b8);
}


/* ================= HERO ================= */
.page-about .about-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 1rem;
  text-align: center;
}

.page-about .about-hero h1 {
  margin-bottom: 1rem;
}

.page-about .about-hero p {
  color: var(--text-muted);
}

/* ================= ABOUT DESCRIPTION ================= */
.page-about .about-description {
  padding: 5rem 1rem;
  background: #fff;
}

.page-about .about-description h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.page-about .about-description p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= TIMELINE ================= */
.page-about .story-section {
  background: #ffffff;
  padding: 5rem 1rem;
}

.page-about .story-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.page-about .timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.page-about .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--pink-accent);
}

.page-about .timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
}

.page-about .timeline-item-right {
  left: 50%;
}

.page-about .timeline-item::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  background: var(--pink-accent);
  border-radius: 50%;
  z-index: 1;
}

.page-about .timeline-item.timeline-item-right::before {
  left: -10px;
}

.page-about .timeline-item:not(.timeline-item-right)::before {
  right: -10px;
}

.page-about .timeline-content {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= TEAM ================= */
.page-about .team-section {
  padding: 5rem 1rem;
}

.page-about .team-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-dark);
  text-align: center;
}

.page-about .team-card {
  transition: all 0.3s ease;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
}

.page-about .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.page-about .team-card .team-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 4px solid var(--pink-accent);
  border-radius: 50%;
  margin-bottom: 1rem;
  margin: auto;
}

.page-about .team-card h5 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.page-about .team-card p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1rem;
}

/* ================= CTA ================= */
.page-about .cta-section {
  background: #ffe6ee;
  padding: 4rem 1rem;
  text-align: center;
}

.page-about .cta-section h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-about .cta-section p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* ================= SINGLE ORDER PAGE ================= */
body.single-tws_order .orders-hero {
    background: var(--pink-heading-bg);
    background-size: 150% 150%;
  
    padding: 6rem 1rem;
    text-align: center;
}

body.single-tws_order .orders-hero h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.single-tws_order .orders-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ================= ORDER TRACKER ================= */
body.single-tws_order .order-tracker .tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

body.single-tws_order .order-tracker .tracker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 4px;
    background: #e5e5e5;
    z-index: 0;
}

body.single-tws_order .order-tracker .tracker-step {
    text-align: center;
    position: relative;
    flex: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

body.single-tws_order .order-tracker .tracker-step.active {
    opacity: 1;
}

body.single-tws_order .order-tracker .tracker-step .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f8f8;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0px auto;
    font-size: 1rem;
    transition: all 0.4s ease;
}

body.single-tws_order .order-tracker .tracker-step.active .circle {
    border-color: var(--pink-accent);
    background: var(--pink-accent);
    color: #fff;
}

body.single-tws_order .order-tracker .tracker-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ================= ORDER LOGS ================= */
body.single-tws_order .order-logs {
    background: #f9f9f9;
    padding: 2rem 0;
}

body.single-tws_order .order-logs h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

body.single-tws_order .order-logs .logs {
    border-left: 3px solid #e5e5e5;
    position: relative;
    padding-left: 2rem;
}

body.single-tws_order .order-logs .log-item {
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

body.single-tws_order .order-logs .log-item:nth-child(1) { animation-delay: 0.1s; }
body.single-tws_order .order-logs .log-item:nth-child(2) { animation-delay: 0.2s; }
body.single-tws_order .order-logs .log-item:nth-child(3) { animation-delay: 0.3s; }
body.single-tws_order .order-logs .log-item:nth-child(4) { animation-delay: 0.4s; }
body.single-tws_order .order-logs .log-item:nth-child(5) { animation-delay: 0.5s; }

body.single-tws_order .order-logs .log-dot {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--pink-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

body.single-tws_order .order-logs .log-content {
    padding: 0.25rem 0 0.5rem 0;
}

body.single-tws_order .order-logs .log-content strong {
    display: block;
    font-weight: 600;
}

body.single-tws_order .order-logs .log-content span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

body.single-tws_order .order-logs .log-content p {
    margin: 0.25rem 0 0;
}

/* ================= ORDER DETAILS ================= */
body.single-tws_order .order-details h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

body.single-tws_order .order-details ul {
    padding-left: 0;
}

body.single-tws_order .order-details ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}

body.single-tws_order .order-details .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= THANK YOU – NEXT STEPS ================= */

.thankyou-instructions {
    color: var(--text-dark);
}

/* Card */
.thankyou-instructions .step-card {
    background: var(--pink-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    height: 100%;
    border: 1px solid rgba(225, 127, 148, 0.15);
}

/* Step Number – Calm & Elegant */
.thankyou-instructions .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;

    color: var(--text-dark);

    font-weight: 700;
    font-size: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--pink-accent);

    position: relative;
}

/* Very soft outer ring (non-flashy) */
.thankyou-instructions .step-number::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(225, 127, 148, 0.08);
    z-index: -1;
    pointer-events: none;
}

/* Content */
.thankyou-instructions .step-content h5 {
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

.thankyou-instructions .step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Buttons spacing safety */
.thankyou-instructions .btn {
    margin-bottom: 8px;
}


/* ================= RSVP LIST PAGE ================= */

/* Hero Section */
.page-rsvp-list .rsvp-list-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-rsvp-list .rsvp-list-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-rsvp-list .rsvp-list-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}
/* Container */
.rsvp-list-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: #333;
}

/* Table wrapper */
.rsvp-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  border: 2px solid rgba(225, 127, 148, 0.15);
}

/* Table styling */
.rsvp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  min-width: 600px;
}

/* Table headers */
.rsvp-table th {
  background: #fdf0f5; /* soft pink */
  font-weight: 600;
  color: #e17f94;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem;
  text-align: left;
}

/* Table rows */
.rsvp-table tbody tr {
  transition: background 0.2s ease;
}

.rsvp-table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.rsvp-table tbody tr:hover {
  background: #fff0f4;
}

/* Table cells */
.rsvp-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  vertical-align: middle;
  color: #444;
  word-break: break-word;
}


.rsvp-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.rsvp-yes {
    background-color: #e6f9f0;
    color: #2f855a;
}

.rsvp-no {
    background-color: #ffe6e6;
    color: #c53030;
}

.rsvp-maybe {
    background-color: #fff5e6;
    color: #dd6b20;
}
.rsvp-table td.message {
  max-width: 200px;
}

/* Submitted date */
.rsvp-table td.submitted-at {
  font-size: 0.85rem;
  color: #888;
  min-width: 120px;
}

/* RSVP Summary Cards */
.rsvp-summary-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rsvp-summary-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(225, 127, 148, 0.15);
    min-width: 180px;
    width: 32%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rsvp-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.rsvp-summary-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.rsvp-summary-card .card-icon.yes {
    background-color: #2f855a; /* green */
}

.rsvp-summary-card .card-icon.guests {
    background-color: #e17f94; /* pink */
}

.rsvp-summary-card .card-icon.maybe {
    background-color: #dd6b20; /* orange */
}

.rsvp-summary-card .card-content .card-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-accent);
    
}

.rsvp-summary-card .card-content .card-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.type-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px; /* fully rounded pill */
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  
  background-color: #f3f4f6; /* light gray */
  color: #374151; /* dark gray text */
}


/* ================= HASHTAG GENERATOR PAGE ================= */

.page-hashtag-generator .hashtag-generator-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-hashtag-generator .hashtag-generator-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hashtag-generator .hashtag-generator-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* ================= BUDGET TRACKER PAGE ================= */

.page-budget-tracker .budget-tracker-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-budget-tracker .budget-tracker-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-budget-tracker .budget-tracker-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.page-budget-tracker .tws-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* CARD BASE */
.page-budget-tracker .tws-metric {
    min-height: 200px;
    padding: 22px 24px;
    border-radius: 14px;
    color: white;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* LABEL */
.page-budget-tracker .tws-metric-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    opacity: .85;
}

/* MONEY VALUE */
.page-budget-tracker .tws-metric-value {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;

    flex: 1;
    display: flex;
    align-items: start;
    justify-content: start;

    font-family: 'Inter', sans-serif;
}

/* SUBTEXT */
.page-budget-tracker .tws-metric-sub {
    font-size: 13px;
    opacity: .9;
}

/* ICON */
.page-budget-tracker .tws-metric-icon {
    position: absolute;
    right: 34px;
    bottom: 34px;
    opacity: .18;
}
.page-budget-tracker .tws-metric-icon i {
    font-size: 42px;
}

/* GRADIENTS */
.page-budget-tracker .tws-budget {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.page-budget-tracker .tws-spent {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.page-budget-tracker .tws-remaining {
    background: linear-gradient(135deg, #10b981, #34d399);
}
.page-budget-tracker .tws-next {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}
/* ================= TABLE RESPONSIVE ================= */
.page-budget-tracker .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.page-budget-tracker table {
  width: 100%;
  border-collapse: collapse;
}

.page-budget-tracker table th,
.page-budget-tracker table td {
  padding: 0.5rem 0.75rem;
  vertical-align: middle;
  white-space: nowrap; /* prevent text wrap on small screens */
}

#categoryPieChart,
#budgetBarChart {
    max-height: 300px;
}

/* ================= BUDGET TRACKER PAGE ================= */

.page-client-portal .client-portal-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-client-portal .client-portal-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-client-portal .client-portal-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

#breadcrumbs{
  margin-top: 20px;
  margin-bottom: unset !important;
}

/* Yoast Breadcrumb Styling */

#breadcrumbs {
  background: linear-gradient(
    135deg,
    #fff4f7,
    #ffe8ef
  );
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-block;
  color: #a55a6c;
  border: 1px solid #f3d3dc;
}

#breadcrumbs a {
  color: #c5667b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#breadcrumbs a:hover {
  color: #a94f63;
  text-decoration: underline;
}

#breadcrumbs span {
  margin: 0 4px;
}

.page-checkout .breadcrumb-container,
.page-partners .breadcrumb-container{
  display: none !important;
}

/* ================= VENUES PAGE ================= */

.page-venues .venues-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-venues .venues-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-venues .venues-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* =========================
   Philippines Venue Map
========================= */

.ph-map-wrapper{
    max-width: 700px;
    margin: auto;
    position: relative;
}

/* SVG responsiveness */
.ph-map-wrapper svg{
    width:100%;
    height:auto;
    display:block;
}

/* Default province style */
.ph-map-wrapper path{
    fill:#f6d9e2;
    stroke:#ffffff;
    stroke-width:1;
    cursor:pointer;
    transition:all .25s ease;
}

/* Hover province */
.ph-map-wrapper path:hover{
    fill:#e17f94;
    transform:translateY(-1px);
}

/* Provinces that have venues */
.ph-map-wrapper path.has-venues{
    fill:#f3a7b7;
}

/* Active province (selected page) */
.ph-map-wrapper path.active-province{
    fill:#c5667b;
}

/* Smooth hover glow */
.ph-map-wrapper path:hover{
    filter:drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Optional tooltip container */
.map-tooltip{
    position:absolute;
    background:#ffffff;
    padding:6px 10px;
    border-radius:6px;
    font-size:13px;
    font-weight:500;
    pointer-events:none;
    white-space:nowrap;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    transform:translate(-50%,-120%);
    opacity:0;
    transition:opacity .2s ease;
}

/* Show tooltip */
.map-tooltip.show{
    opacity:1;
}

/* Optional map container spacing */
.venues-map-section{
    padding-top:40px;
    padding-bottom:40px;
}

/* Province labels if added later */
.map-label{
    font-size:12px;
    fill:#555;
    pointer-events:none;
}

/* Smooth zoom */
.ph-map-wrapper svg{
transition:all .6s ease;
}

/* Dim other provinces */
.ph-map-wrapper.dimmed path{
opacity:0.15;
transition:opacity .3s ease;
}

/* Selected province */
.ph-map-wrapper path.active-province{
opacity:1 !important;
fill:#e17f94;
stroke:#ffffff;
stroke-width:1.5;
}

/* Hover */
.ph-map-wrapper path:hover{
cursor:pointer;
}

.venue-explorer{
display:flex;
gap:30px;
align-items:flex-start;
}

/* MAP COLUMN */

.map-column{
width:100%;
transition:all .4s ease;
}

.venue-explorer.active .map-column{
width:40%;
}

/* VENUE COLUMN */

.venue-column{
width:0;
opacity:0;
overflow:hidden;
transition:all .4s ease;
}

.venue-explorer.active .venue-column{
width:60%;
opacity:1;
}

/* SCROLLABLE LIST */

.venue-list{
max-height:600px;
overflow-y:auto;
padding-right:10px;
}

/* CARD */

.venue-card{
display:flex;
gap:15px;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,.08);
margin-bottom:15px;
height: 130px;
}

.venue-card img{
width:140px;
min-width: 140px;
object-fit:cover;
}

.venue-info{
padding:10px;
}

.venue-stars{
color:#f5b50a;
font-size:14px;
}

.venue-type{
font-size:13px;
color:#888;
}

.venue-address{
font-size:13px;
color:#555;
}

.venue-no-photo{
  background: var(--pink-bg);
  color: var(--pink-accent-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  height:180px;
  font-size:18px;
  width:140px;
  min-width: 140px;
  height: 100%;
}
.province-list-mobile{
    display:none;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.sparkle-icon {
  display: inline-block;
  animation: sparkle 1s infinite;
  width: 14px;
  height: 14px;
  padding-top: 1px;
  margin-right: 10px;
}

.form-input-container input:read-only{
  background-color: var(--pink-soft);
}


/* ================= BLOG PAGE ================= */

/* Hero Section */
.page-blog .blog-hero,
.single-post .blog-hero {
  background: var(--pink-heading-bg);
  background-size: 150% 150%;
  
  padding: 6rem 0;
}

.page-blog .blog-hero h1,
.single-post .blog-hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-blog .blog-hero p,
.single-post .blog-hero p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.page-blog .pagination {
    margin: 0;
    padding: 0;
}
.page-blog .page-item {
    transition: all 0.2s ease;
}
.page-blog .page-link {
    color: #999;
    background: transparent;
    font-weight: 500;
    border-radius: 100% !important;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: all 0.25s ease;
}
.page-blog .page-link:hover {
    color: var(--pink-accent, #f5a7b8);
    background: rgba(245, 167, 184, 0.1);
    text-decoration: none;
}
.page-blog .page-item.active .page-link {
    color: #fff;
    background: var(--pink-accent, #f5a7b8);
}
.page-blog .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

/* Privacy Policy */
.privacy-policy-hero {
  background: var(--pink-heading-bg);  
  background-size: 150% 150%;
  padding: 6rem 0;
}

/* Terms of service */
.terms-of-service-hero {
  background: var(--pink-heading-bg);  
  background-size: 150% 150%;
  padding: 6rem 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .about-section h2 {
    font-size: 2rem;
  }

  .about-section .tagline {
    font-size: 1.1rem;
  }

  .about-section .description {
    font-size: 1rem;
  }

  .about-section .about-features li {
    font-size: 0.95rem;
  }
  .navbar-collapse {
    background: #ffffff;
    padding: 20px 0;
    border-radius: var(--radius-lg);
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }
  .navbar-nav .nav-link.active {
    border: none;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card h4 {
    font-size: 1.7rem;
  }

  .pricing-card h3 {
    font-size: 1.1rem;
  }

  body.page-product-details .products-hero h1 {
    font-size: 2.2rem;
  }

  body.page-product-details .products-hero p {
    font-size: 1rem;
  }

  body.page-product-details .product-details h2.product-price {
    font-size: 1.6rem;
  }

  .testimonial-slider .slick-slide {
    transform: scale(0.85) rotateY(0deg) !important; /* reduce rotation for smaller screens */
    opacity: 0.7;
  }

  .testimonial-slider .slick-center {
    transform: scale(1.1) !important;
  }

  .testimonial-slider .testimonial-card {
    min-height: 180px;
  }

  .page-testimonials .testimonial-card {
    padding: 2rem 1.75rem;
  }

  .rsvp-controls{
    justify-content: center !important;
  }

  .map-column{
      display:none;
  }

  .province-list-mobile{
      display:block;
  }

  .venue-explorer{
      flex-direction:column;
  }

  .venue-column{
      width:100% !important;
      opacity:1 !important;
      max-width: 300px;
  }

  .page-budget-tracker table thead {
    display: none; /* hide table header */
  }

  .page-budget-tracker table tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
  }

  .page-budget-tracker table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    white-space: normal; /* allow wrap */
    font-size: 0.9rem;
  }

  .page-budget-tracker table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    flex: 1;
    text-transform: uppercase;
    opacity: 0.7;
    margin-right: 0.5rem;
  }

  /* Actions buttons spacing */
  .page-budget-tracker table tbody td .btn {
    margin-left: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }

  [data-aos] {
    transition-duration: 600ms !important;
  }

  button.btn:not(.navbar-toggler),
  a.btn {
    width: 100%;
    padding: 0.75em 1em;
  }
  button.btn-edit-expense{
    width: fit-content !important;
  }
  .contact-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .page-thankyou .checkout-hero h1 {
    font-size: 2rem;
  }

  .page-thankyou .checkout-hero p {
    font-size: 1rem;
  }

  .page-thankyou .thankyou-instructions ul li {
    font-size: 0.95rem;
  }


  .page-thankyou .btn-primary,
  .page-thankyou .btn-outline-secondary {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .page-contact .contact-hero {
    padding: 4rem 1rem;
  }

  .page-contact .contact-form-section {
    padding: 3rem 1rem;
  }

  .prenup-item.card {
      width: 140px !important;
      height: 140px !important;
  }

  .prenup-item.card .remove-item{
    width: fit-content;
  }

  .page-about .timeline-item,
  .page-about .timeline-item-right {
    width: 100%;
    left: 0 !important;
    padding-left: 3rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  .page-about .timeline::before {
    left: 20px;
  }

  .page-about .timeline-item::before,
  .page-about .timeline-item.timeline-item-right::before {
    left: 10px !important;
    top: 50% !important;
  }
  .page-about .team-card {
    padding: 1.5rem;
  }

  body.single-tws_order .order-tracker .tracker-step .circle{
    margin-top: 70px;
  }

  .rsvp-table th, .rsvp-table td {
    padding: 0.75rem 1rem;
  }

  .rsvp-summary-card{
    width: 100%;
  }

  #voucher-wrapper button {
      flex-direction: row;
      margin-top: 8px;
      border-radius: var(--radius-sm);
  }

  .sort-bar .search-wrap,
  .sort-bar select.form-select{
    width: 100% !important;
  }

  .ph-map-wrapper{
      max-width:100%;
      padding:0 10px;
  }

  .ph-map-wrapper path{
      stroke-width:0.8;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-section h2 {
    font-size: 1.75rem;
  }

  .about-section .tagline {
    font-size: 1rem;
  }

  .about-section .description {
    font-size: 0.95rem;
  }

  .about-section .about-features li {
    font-size: 0.9rem;
  }
  .page-products .sort-bar .container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    text-align: center;
  }

  .page-products .sort-bar .d-flex {
    flex-direction: column;
    gap: 8px;
  }

  .page-products .sort-bar .form-select {
    width: 100% !important;
  }

  .page-products .sort-bar p {
    text-align: center;
  }

  .products-pagination {
    margin-top: 2rem; /* slightly smaller spacing on mobile */
  }

  .products-pagination .pagination {
    flex-wrap: wrap; /* allow numbers to wrap if needed */
    justify-content: center;
    gap: 0.25rem; /* smaller gap between items */
  }

  .products-pagination .page-link {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  body.page-product-details .products-hero {
    padding: 4rem 1rem;
  }

  body.page-product-details .modern-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  body.page-product-details .modern-tabs button {
    width: 100%;
    text-align: left;
  }
  body.page-checkout .order-summary .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-checkout .order-summary .order-product-image {
    margin-bottom: 0.75rem;
    width: 80px;
    height: 80px;
  }

  body.page-checkout .order-summary .d-flex.justify-content-between {
    width: 100%;
  }

  .page-client-form .multi-step-form {
    padding: 1.5rem;
  }
  .page-client-form .client-form-hero {
    padding: 3rem 1rem;
  }

  .testimonial-slider .slick-slide {
    transform: scale(0.95) rotateY(0deg) !important; /* remove angles for mobile */
    opacity: 0.8;
  }

  .testimonial-slider .slick-center {
    transform: scale(1) !important; /* center slide same size on mobile */
  }

  .testimonial-slider .testimonial-card {
    min-height: 160px;
    margin: 0 5px;
    padding: 1rem;
  }

  .testimonial-slider .testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .testimonial-slider .testimonial-content h5 {
    font-size: 0.95rem;
  }

  /* Adjust slick dots for mobile */
  .slick-dots {
    bottom: -50px;
  }

  .page-client-form .step-counter .step {
      width: 16px;
      height: 16px;
      line-height: 12px;
      font-size: 10px;
  }

  .prenup-gallery {
      justify-content: center;
  }

  .page-testimonials .testimonials-hero {
    padding: 4.5rem 1rem;
  }

  .page-testimonials .testimonial-text {
    font-size: 0.95rem;
  }

  
  .sort-bar form {
      width: 100%;
  }

  .sort-bar .search-input {
      min-width: 100%;
  }

  .sort-bar select.form-select {
      width: 100%;
  }
}