/* ==========================================================================
   NHÀ CHUPPY - LUXURY BRIDAL & EVENING GOWN THEME STYLESHEET
   Design Aesthetic: Warm Cream, Luxury Champagne Gold, Elegant Serif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Great+Vibes&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --chuppy-gold: #b8864e;
  --chuppy-gold-light: #dfc29f;
  --chuppy-gold-dark: #8c602e;
  --chuppy-gold-glow: rgba(184, 134, 78, 0.25);
  --chuppy-cream: #fbf8f3;
  --chuppy-cream-alt: #f5efe6;
  --chuppy-cream-card: #fdfbf7;
  --chuppy-brown: #463426;
  --chuppy-text: #2c2520;
  --chuppy-text-muted: #7c7267;
  --chuppy-border: #ebdccb;
  --chuppy-border-light: #f3e9dc;
  --chuppy-white: #ffffff;
  --chuppy-pink-soft: #fbf0ee;
  --chuppy-radius-sm: 8px;
  --chuppy-radius-md: 14px;
  --chuppy-radius-lg: 20px;
  --chuppy-radius-full: 9999px;
  --chuppy-shadow-sm: 0 4px 12px rgba(90, 66, 46, 0.05);
  --chuppy-shadow-md: 0 8px 24px rgba(90, 66, 46, 0.08);
  --chuppy-shadow-lg: 0 16px 36px rgba(90, 66, 46, 0.12);
  --chuppy-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Base */
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--chuppy-text);
  background-color: var(--chuppy-cream);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--chuppy-brown);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.font-script {
  font-family: 'Dancing Script', cursive;
}

.font-calligraphy {
  font-family: 'Great Vibes', cursive;
}

a {
  color: var(--chuppy-brown);
  text-decoration: none;
  transition: var(--chuppy-transition);
}

a:hover, a:focus {
  color: var(--chuppy-gold);
  text-decoration: none;
}

/* Container override */
.chuppy-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.chuppy-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--chuppy-border-light);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
  transition: var(--chuppy-transition);
}

.chuppy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.chuppy-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.chuppy-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* Main Navigation */
.chuppy-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
}

.chuppy-nav li {
  position: relative;
}

.chuppy-nav li a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--chuppy-text);
  border-radius: var(--chuppy-radius-full);
  transition: var(--chuppy-transition);
}

.chuppy-nav li a:hover {
  color: var(--chuppy-gold-dark);
  background-color: var(--chuppy-cream-alt);
}

.chuppy-nav li.active a {
  color: var(--chuppy-brown);
  background-color: var(--chuppy-cream-alt);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--chuppy-border);
}

/* Desktop Submenu Dropdown for BỘ SƯU TẬP */
.chuppy-nav li {
  position: relative;
}

.chuppy-nav li .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(70, 52, 38, 0.12);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

/* Hover Bridge pseudo-element to prevent hover gap loss */
.chuppy-nav li .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.chuppy-nav li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.chuppy-nav li .dropdown-menu li {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}

.chuppy-nav li .dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #463426;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: all 0.2s ease;
}

.chuppy-nav li .dropdown-menu li a:hover {
  background: var(--chuppy-cream-alt);
  color: var(--chuppy-gold);
  padding-left: 24px;
}

/* Mobile Submenu Expansion in Drawer */
.chuppy-mobile-nav .chuppy-nav li .dropdown-menu {
  display: block !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  background: #fbf8f3 !important;
  padding: 4px 0 4px 15px !important;
  min-width: 100% !important;
  border-radius: 0 !important;
  pointer-events: auto !important;
}

.chuppy-mobile-nav .chuppy-nav li .dropdown-menu li a {
  padding: 8px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #665647 !important;
  text-transform: capitalize !important;
}

/* Header Right Actions */
.chuppy-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.chuppy-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--chuppy-brown);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: var(--chuppy-transition);
}

.chuppy-icon-btn:hover {
  background: var(--chuppy-cream-alt);
  border-color: var(--chuppy-border);
  color: var(--chuppy-gold);
}

.chuppy-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--chuppy-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hotline Pill */
.chuppy-hotline-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--chuppy-cream-card);
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-full);
  text-decoration: none;
  transition: var(--chuppy-transition);
}

.chuppy-hotline-pill:hover {
  background: var(--chuppy-white);
  border-color: var(--chuppy-gold);
  box-shadow: var(--chuppy-shadow-sm);
  transform: translateY(-1px);
}

.chuppy-hotline-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--chuppy-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.chuppy-hotline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.chuppy-hotline-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--chuppy-brown);
  letter-spacing: 0.02em;
}

.chuppy-hotline-sub {
  font-size: 10px;
  color: var(--chuppy-text-muted);
}

/* Mobile Toggle */
.chuppy-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--chuppy-brown);
  cursor: pointer;
}

/* ==========================================================================
   HERO BANNER SECTION
   ========================================================================== */
.chuppy-hero {
  position: relative;
  background-color: #f7f1e7;
  background-image: url('../images/chuppy/hero_banner.jpg');
  background-size: cover;
  background-position: center right;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--chuppy-border-light);
  overflow: hidden;
}

.chuppy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(251, 248, 243, 0.95) 0%, rgba(251, 248, 243, 0.85) 45%, rgba(251, 248, 243, 0.2) 100%);
}

.chuppy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 40px 0;
}

.chuppy-hero-script {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  color: var(--chuppy-gold-dark);
  margin-bottom: 2px;
  display: block;
}

.chuppy-hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--chuppy-text);
  margin: 0 0 4px 0;
}

.chuppy-hero-brand {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--chuppy-brown);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chuppy-hero-brand .sparkle {
  font-size: 24px;
  color: var(--chuppy-gold);
}

.chuppy-hero-tagline {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chuppy-gold-dark);
  margin-bottom: 28px;
}

.chuppy-hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.chuppy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--chuppy-radius-full);
  transition: var(--chuppy-transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.chuppy-btn-primary {
  background: linear-gradient(135deg, #a87e52 0%, #825b33 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(130, 91, 51, 0.25);
}

.chuppy-btn-primary:hover {
  background: linear-gradient(135deg, #825b33 0%, #684523 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(130, 91, 51, 0.35);
}

.chuppy-btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--chuppy-brown);
  border-color: var(--chuppy-border);
}

.chuppy-btn-outline:hover {
  background: #ffffff;
  border-color: var(--chuppy-gold);
  color: var(--chuppy-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--chuppy-shadow-sm);
}

/* ==========================================================================
   QUICK CATEGORY CARDS SECTION (4 CARDS)
   ========================================================================== */
.chuppy-section-cats {
  padding: 30px 0;
}

.chuppy-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.chuppy-cat-card {
  background: var(--chuppy-cream-card);
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--chuppy-transition);
  text-decoration: none;
}

.chuppy-cat-card:hover {
  background: #ffffff;
  border-color: var(--chuppy-gold-light);
  box-shadow: var(--chuppy-shadow-md);
  transform: translateY(-3px);
}

.chuppy-cat-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--chuppy-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f4ee;
}

.chuppy-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-cat-card:hover .chuppy-cat-thumb img {
  transform: scale(1.08);
}

.chuppy-cat-info {
  flex-grow: 1;
}

.chuppy-cat-name {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--chuppy-brown);
  margin: 0 0 2px 0;
  letter-spacing: 0.03em;
}

.chuppy-cat-link {
  font-size: 11px;
  color: var(--chuppy-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--chuppy-transition);
}

.chuppy-cat-card:hover .chuppy-cat-link {
  color: var(--chuppy-gold);
}

/* ==========================================================================
   NEW COLLECTION SECTION
   ========================================================================== */
.chuppy-collection-section {
  padding: 35px 0 45px 0;
}

.chuppy-collection-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.chuppy-collection-intro {
  padding-right: 15px;
}

.chuppy-tag-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chuppy-gold-dark);
  background: var(--chuppy-cream-alt);
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-full);
  margin-bottom: 10px;
}

.chuppy-collection-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--chuppy-brown);
  margin: 0 0 10px 0;
}

.chuppy-collection-desc {
  font-size: 13px;
  color: var(--chuppy-text-muted);
  margin-bottom: 22px;
}

/* Product Card Grid */
.chuppy-prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.chuppy-prod-card {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-md);
  padding: 8px;
  transition: var(--chuppy-transition);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.chuppy-prod-card:hover {
  border-color: var(--chuppy-gold-light);
  box-shadow: var(--chuppy-shadow-md);
  transform: translateY(-4px);
}

.chuppy-prod-img-wrap {
  position: relative;
  border-radius: var(--chuppy-radius-sm);
  overflow: hidden;
  background: #fdfbf7;
  padding-top: 130%;
  margin-bottom: 8px;
}

.chuppy-prod-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-prod-card:hover .chuppy-prod-img-wrap img {
  transform: scale(1.06);
}

.chuppy-prod-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--chuppy-gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.chuppy-prod-wish {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--chuppy-brown);
  border: none;
  cursor: pointer;
  transition: var(--chuppy-transition);
  z-index: 2;
}

.chuppy-prod-wish:hover, .chuppy-prod-wish.active {
  color: #e53935;
  background: #ffffff;
}

.chuppy-prod-cat {
  font-size: 10.5px;
  color: #c0392b;
  font-weight: 700;
  margin-bottom: 2px;
}

.chuppy-prod-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--chuppy-brown);
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chuppy-prod-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--chuppy-gold-dark);
  margin-bottom: 6px;
}

.chuppy-prod-btn {
  margin-top: auto;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 10px;
  background: var(--chuppy-cream-alt);
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-full);
  color: var(--chuppy-brown);
  display: block;
  transition: var(--chuppy-transition);
}

.chuppy-prod-card:hover .chuppy-prod-btn {
  background: var(--chuppy-gold);
  border-color: var(--chuppy-gold);
  color: #ffffff;
}

/* ==========================================================================
   USP COMMITMENT BAR SECTION
   ========================================================================== */
.chuppy-usp-section {
  padding: 15px 0 35px 0;
}

.chuppy-usp-bar {
  background: linear-gradient(135deg, #fdfbf7 0%, #f6efe4 100%);
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--chuppy-shadow-sm);
}

.chuppy-usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chuppy-usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--chuppy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--chuppy-gold-dark);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.chuppy-usp-text h4 {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--chuppy-brown);
  margin: 0 0 2px 0;
}

.chuppy-usp-text p {
  font-size: 11px;
  color: var(--chuppy-text-muted);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   SECTION COMMON HEADINGS
   ========================================================================== */
.chuppy-section-header {
  text-align: center;
  margin-bottom: 24px;
}

.chuppy-section-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chuppy-brown);
  margin: 0 0 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chuppy-section-title span.heart {
  font-size: 16px;
  color: var(--chuppy-gold);
}

/* ==========================================================================
   CONCEPT NỔI BẬT SECTION
   ========================================================================== */
.chuppy-concept-section {
  padding: 30px 0 45px 0;
}

.chuppy-concept-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.chuppy-concept-card {
  position: relative;
  border-radius: var(--chuppy-radius-md);
  overflow: hidden;
  padding-top: 135%;
  background: #f0eae1;
  box-shadow: var(--chuppy-shadow-sm);
  transition: var(--chuppy-transition);
  display: block;
}

.chuppy-concept-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--chuppy-shadow-lg);
}

.chuppy-concept-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-concept-card:hover img {
  transform: scale(1.08);
}

.chuppy-concept-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  color: #fff;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chuppy-center-btn {
  text-align: center;
}

/* Combo Slider Styling */
.chuppy-combo-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  padding: 0 45px;
}

.chuppy-combo-slider-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--chuppy-radius-md);
}

.chuppy-combo-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.chuppy-combo-slide-item {
  flex: 0 0 calc((100% - 80px) / 6);
  min-width: calc((100% - 80px) / 6);
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .chuppy-combo-slide-item {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: calc((100% - 48px) / 4);
  }
}

@media (max-width: 768px) {
  .chuppy-combo-slider-wrap {
    padding: 0 32px;
  }
  .chuppy-combo-slide-item {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: calc((100% - 16px) / 2);
  }
}

.chuppy-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--chuppy-border);
  color: var(--chuppy-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: var(--chuppy-transition);
}

.chuppy-slider-btn:hover {
  background: var(--chuppy-gold);
  color: #ffffff;
  border-color: var(--chuppy-gold);
}

.chuppy-slider-btn.prev {
  left: 0;
}

.chuppy-slider-btn.next {
  right: 0;
}

/* ==========================================================================
   BEST RENTAL & FOLLOW US SECTION
   ========================================================================== */
.chuppy-best-rental-section, .chuppy-best-follow-section {
  padding: 40px 0 50px 0;
  background: #ffffff;
}

.chuppy-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
}

.chuppy-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.chuppy-subhead h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chuppy-brown);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Best Rental Grid (6 items in left column) */
.chuppy-rental-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .chuppy-rental-grid-5 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 850px) {
  .chuppy-rental-grid-5 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .chuppy-rental-grid-5 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.chuppy-rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.chuppy-rental-card {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-md);
  padding: 8px;
  text-align: center;
  transition: var(--chuppy-transition);
  display: flex;
  flex-direction: column;
}

.chuppy-rental-card:hover {
  border-color: var(--chuppy-gold-light);
  box-shadow: var(--chuppy-shadow-md);
  transform: translateY(-4px);
}

.chuppy-rental-card .thumb {
  position: relative;
  border-radius: var(--chuppy-radius-sm);
  overflow: hidden;
  padding-top: 130%;
  margin-bottom: 8px;
  background: #fdfbf7;
}

.chuppy-rental-card .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-rental-card:hover .thumb img {
  transform: scale(1.06);
}

.chuppy-rental-cat {
  font-size: 10px;
  color: #c0392b;
  font-weight: 700;
}

.chuppy-rental-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--chuppy-brown);
  margin: 0 0 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chuppy-rental-price {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--chuppy-gold-dark);
  margin-bottom: 6px;
}

.chuppy-btn-rent {
  margin-top: auto;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 8px;
  background: linear-gradient(135deg, #c59b6d 0%, #a87e52 100%);
  color: #fff;
  border-radius: var(--chuppy-radius-full);
  border: none;
  display: block;
  transition: var(--chuppy-transition);
}

.chuppy-btn-rent:hover {
  background: linear-gradient(135deg, #a87e52 0%, #8c602e 100%);
  color: #fff;
}

/* Instagram Lookbook 3x3 Grid */
.chuppy-insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.chuppy-insta-item {
  position: relative;
  border-radius: var(--chuppy-radius-sm);
  overflow: hidden;
  padding-top: 100%;
  background: #f0eae1;
  display: block;
}

.chuppy-insta-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-insta-item:hover img {
  transform: scale(1.1);
}

/* ==========================================================================
   FEEDBACK & VIDEO REELS SECTION
   ========================================================================== */
.chuppy-feedback-video-section {
  padding: 35px 0 45px 0;
}

.chuppy-fb-video-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 28px;
}

/* Feedback Carousel / Grid */
.chuppy-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.chuppy-feedback-card {
  background: var(--chuppy-cream-card);
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--chuppy-shadow-sm);
}

.chuppy-stars {
  color: #e5a93c;
  font-size: 11px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.chuppy-feedback-text {
  font-size: 11px;
  color: var(--chuppy-text);
  line-height: 1.4;
  margin-bottom: 12px;
  font-style: italic;
}

.chuppy-feedback-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chuppy-feedback-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.chuppy-feedback-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--chuppy-brown);
}

/* Video Reels Grid */
.chuppy-reels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.chuppy-reel-card {
  position: relative;
  border-radius: var(--chuppy-radius-md);
  overflow: hidden;
  padding-top: 155%;
  background: #222;
  box-shadow: var(--chuppy-shadow-sm);
  cursor: pointer;
  display: block;
}

.chuppy-reel-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.chuppy-reel-card:hover img {
  transform: scale(1.08);
}

.chuppy-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--chuppy-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--chuppy-transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chuppy-reel-card:hover .chuppy-play-btn {
  background: var(--chuppy-gold);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.15);
}

/* ==========================================================================
   RENTAL PROCESS SECTION
   ========================================================================== */
.chuppy-process-section {
  padding: 40px 0 55px 0;
}

.chuppy-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}

.chuppy-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 180px;
}

.chuppy-step-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--chuppy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--chuppy-gold-dark);
  margin-bottom: 10px;
  box-shadow: var(--chuppy-shadow-sm);
  transition: var(--chuppy-transition);
}

.chuppy-step-item:hover .chuppy-step-icon-wrap {
  border-color: var(--chuppy-gold);
  background: var(--chuppy-cream-alt);
  transform: translateY(-3px);
  box-shadow: var(--chuppy-shadow-md);
}

.chuppy-step-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chuppy-brown);
  margin: 0 0 3px 0;
}

.chuppy-step-desc {
  font-size: 10.5px;
  color: var(--chuppy-text-muted);
  line-height: 1.3;
  margin: 0;
}

.chuppy-step-arrow {
  flex-grow: 1;
  border-top: 1.5px dashed var(--chuppy-border);
  margin-top: 29px;
  position: relative;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.chuppy-footer {
  background: #f6efe4;
  border-top: 1px solid var(--chuppy-border);
  padding: 50px 0 25px 0;
  color: var(--chuppy-text);
}

.chuppy-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.chuppy-footer-brand img {
  height: 48px;
  margin-bottom: 14px;
}

.chuppy-footer-tagline {
  font-size: 12px;
  color: var(--chuppy-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.chuppy-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chuppy-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--chuppy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chuppy-brown);
  font-size: 13px;
  transition: var(--chuppy-transition);
}

.chuppy-social-btn:hover {
  background: var(--chuppy-gold);
  border-color: var(--chuppy-gold);
  color: #fff;
  transform: translateY(-2px);
}

.chuppy-footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chuppy-brown);
  margin: 0 0 16px 0;
}

.chuppy-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chuppy-footer-links li {
  margin-bottom: 8px;
}

.chuppy-footer-links li a {
  font-size: 12px;
  color: var(--chuppy-text-muted);
  transition: var(--chuppy-transition);
}

.chuppy-footer-links li a:hover {
  color: var(--chuppy-gold-dark);
  padding-left: 4px;
}

.chuppy-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--chuppy-text-muted);
}

.chuppy-footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.chuppy-footer-contact i {
  color: var(--chuppy-gold);
  font-size: 13px;
  margin-top: 3px;
}

/* Newsletter Input */
.chuppy-newsletter-form {
  position: relative;
  margin-top: 12px;
}

.chuppy-newsletter-input {
  width: 100%;
  padding: 10px 42px 10px 14px;
  font-size: 12px;
  background: #ffffff;
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-full);
  outline: none;
  color: var(--chuppy-text);
  box-sizing: border-box;
}

.chuppy-newsletter-input:focus {
  border-color: var(--chuppy-gold);
  box-shadow: 0 0 0 3px var(--chuppy-gold-glow);
}

.chuppy-newsletter-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--chuppy-gold);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: var(--chuppy-transition);
}

.chuppy-newsletter-btn:hover {
  background: var(--chuppy-gold-dark);
}

/* Bottom bar & Back to top */
.chuppy-footer-bottom {
  border-top: 1px solid rgba(235, 220, 203, 0.6);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--chuppy-text-muted);
}

.chuppy-back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--chuppy-gold);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--chuppy-shadow-md);
  transition: var(--chuppy-transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.chuppy-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.chuppy-back-to-top:hover {
  background: var(--chuppy-gold-dark);
  transform: translateY(-3px);
}

/* Floating contact widgets */
.chuppy-floating-contact {
  position: fixed;
  bottom: 85px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.chuppy-float-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--chuppy-transition);
}

.chuppy-float-btn.zalo {
  background: #0068ff;
}

.chuppy-float-btn.phone {
  background: #2e7d32;
}

.chuppy-float-btn:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .chuppy-prod-grid, .chuppy-concept-grid, .chuppy-rental-grid, .chuppy-reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .chuppy-collection-layout {
    grid-template-columns: 220px 1fr;
  }
  .chuppy-two-col-layout, .chuppy-fb-video-layout {
    grid-template-columns: 1fr;
  }
  .chuppy-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .chuppy-nav {
    display: none;
  }
  .chuppy-menu-toggle {
    display: block;
  }
  .chuppy-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chuppy-collection-layout {
    grid-template-columns: 1fr;
  }
  .chuppy-usp-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .chuppy-process-steps {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 12px !important;
    justify-items: center !important;
    align-items: flex-start !important;
  }
  .chuppy-step-item {
    width: 100% !important;
    max-width: 165px !important;
    margin: 0 auto !important;
  }
  .chuppy-step-item:last-child {
    grid-column: span 2 !important;
    justify-self: center !important;
  }
  .chuppy-step-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .chuppy-hero {
    min-height: 420px;
  }
  .chuppy-hero-title {
    font-size: 28px;
  }
  .chuppy-hero-brand {
    font-size: 34px;
  }
  .chuppy-prod-grid, .chuppy-concept-grid, .chuppy-rental-grid, .chuppy-reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .chuppy-cat-grid {
    grid-template-columns: 1fr;
  }
  .chuppy-usp-bar {
    grid-template-columns: 1fr;
  }
  .chuppy-feedback-grid {
    grid-template-columns: 1fr;
  }
  .chuppy-footer-grid {
    grid-template-columns: 1fr;
  }
  .chuppy-hotline-pill {
    display: none;
  }
}

/* Hide floating contact buttons globally (Tam an) */
.chuppy-floating-contact, .fix-chat, .hotline-support, .chathere {
  display: none !important;
}

/* Modal Popup Styling */
.chuppy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 37, 32, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.chuppy-modal.open {
  opacity: 1;
  visibility: visible;
}

.chuppy-modal-dialog {
  width: 90%;
  max-width: 540px;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chuppy-modal.open .chuppy-modal-dialog {
  transform: translateY(0) scale(1);
}

.chuppy-modal-content {
  background: #ffffff;
  border-radius: var(--chuppy-radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.chuppy-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: var(--chuppy-brown);
  cursor: pointer;
  line-height: 1;
  transition: var(--chuppy-transition);
}

.chuppy-modal-close:hover {
  color: var(--chuppy-gold);
  transform: rotate(90deg);
}

/* Mobile Nav Drawer */
.chuppy-mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--chuppy-border);
  box-shadow: var(--chuppy-shadow-md);
  padding: 15px 20px;
  display: none !important;
}

.chuppy-mobile-nav.open {
  display: block !important;
  z-index: 99999 !important;
}

.chuppy-mobile-nav .chuppy-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.chuppy-mobile-nav .chuppy-nav li {
  width: 100% !important;
  border-bottom: 1px solid var(--chuppy-border-light);
  margin: 0 !important;
}

.chuppy-mobile-nav .chuppy-nav li:last-child {
  border-bottom: none !important;
}

.chuppy-mobile-nav .chuppy-nav li a {
  display: block !important;
  padding: 12px 10px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: var(--chuppy-brown) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.chuppy-mobile-nav .chuppy-nav li a:hover,
.chuppy-mobile-nav .chuppy-nav li.active a {
  color: var(--chuppy-gold) !important;
  background: var(--chuppy-cream-alt) !important;
}

.chuppy-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chuppy-mobile-menu li {
  border-bottom: 1px solid var(--chuppy-border-light);
}

.chuppy-mobile-menu li:last-child {
  border-bottom: none;
}

.chuppy-mobile-menu li a {
  display: block;
  padding: 12px 6px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--chuppy-text);
}

.chuppy-mobile-menu li.active a, .chuppy-mobile-menu li a:hover {
  color: var(--chuppy-gold-dark);
}

/* ==========================================================================
   SUBPAGES: COMMON BANNER & BREADCRUMBS
   ========================================================================== */
.chuppy-subpage-banner {
  background: linear-gradient(135deg, #f7f1e7 0%, #ede3d3 100%);
  padding: 40px 0 35px 0;
  text-align: center;
  border-bottom: 1px solid var(--chuppy-border);
  margin-bottom: 35px;
}

.chuppy-subpage-banner h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--chuppy-brown);
  margin: 0 0 8px 0;
}

.chuppy-subpage-banner p {
  font-size: 13.5px;
  color: var(--chuppy-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.bg_bread {
  background: var(--chuppy-cream-alt);
  padding: 10px 0;
  border-bottom: 1px solid var(--chuppy-border-light);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.breadcrumb > li + li:before {
  content: "›";
  color: var(--chuppy-gold);
  padding: 0 8px;
}

.breadcrumb a {
  color: var(--chuppy-text-muted);
}

.breadcrumb .active, .breadcrumb .txt {
  color: var(--chuppy-brown);
  font-weight: 600;
}

/* ==========================================================================
   SUBPAGES: SHOP / COLLECTION LISTING
   ========================================================================== */
.chuppy-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--chuppy-border-light);
}

.chuppy-cat-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chuppy-cat-pills li a {
  display: inline-block;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--chuppy-text);
  background: #ffffff;
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-full);
  transition: var(--chuppy-transition);
}

.chuppy-cat-pills li.active a, .chuppy-cat-pills li a:hover {
  background: var(--chuppy-gold);
  border-color: var(--chuppy-gold);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(184, 134, 78, 0.25);
}

.chuppy-sort-box select {
  padding: 7px 14px;
  border-radius: var(--chuppy-radius-full);
  border: 1px solid var(--chuppy-border);
  font-size: 12px;
  color: var(--chuppy-text);
  background: #ffffff;
  outline: none;
}

/* Shop Items Grid in subpages */
._view_grid .panel {
  border: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 30px;
}

._view_grid .panel-heading {
  background: transparent;
  border: none;
  padding: 0 0 15px 0;
}

._view_grid .panel-heading span a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--chuppy-brown);
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

._view_grid .panel-heading span a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--chuppy-gold);
}

._view_grid .panel-body {
  padding: 0;
}

/* Shop 4-Column Grid in subpages */
.chuppy-shop-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

@media (max-width: 1200px) {
  .chuppy-shop-grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .chuppy-shop-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .chuppy-shop-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.shop-item {
  background: #ffffff;
  border: 1px solid #ebe4d8;
  border-radius: 18px;
  padding: 14px 14px 16px 14px;
  margin-bottom: 0;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(140, 96, 46, 0.04);
}

.shop-item:hover {
  border-color: #dfc29f;
  box-shadow: 0 12px 28px rgba(140, 96, 46, 0.12);
  transform: translateY(-5px);
}

.shop-item .image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding-top: 135%;
  margin-bottom: 12px;
  background: #fdfbf7;
}

.shop-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-item:hover .image img {
  transform: scale(1.08);
}

.shop-item .info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shop-item .info .cat-label {
  font-size: 12px;
  color: #8c827a;
  margin-bottom: 4px;
  font-weight: 500;
}

.shop-item .info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16.5px;
  font-weight: 700;
  color: #2c2520;
  margin: 0 0 6px 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-item .info h3 a {
  color: #2c2520;
  transition: color 0.2s ease;
}

.shop-item .info h3 a:hover {
  color: #8c602e;
}

.shop-item .price {
  font-size: 15.5px;
  font-weight: 800;
  color: #8c602e;
  margin-bottom: 14px;
  margin-top: 2px;
}

.shop-item .btn-thue-ngay {
  display: block;
  width: 100%;
  padding: 10px 0;
  background: #9e6e3e;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(158, 110, 62, 0.2);
}

.shop-item .btn-thue-ngay:hover {
  background: #855a2d;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(133, 90, 45, 0.3);
}

/* ==========================================================================
   CATALOG BODY LAYOUT (EXACT MATCH TO MOCKUP)
   ========================================================================== */
.chuppy-catalog-wrapper {
  padding: 35px 0 60px 0;
}

.chuppy-catalog-header {
  text-align: center;
  margin-bottom: 40px;
}

.chuppy-catalog-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #463426;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.chuppy-prod-price, .chuppy-rental-price, .card-price, .product-price {
  display: none !important;
}

.chuppy-catalog-layout {
  display: flex !important;
  flex-direction: row !important;
  gap: 36px !important;
  align-items: flex-start !important;
  margin-bottom: 50px;
}

.chuppy-sidebar-col {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  flex-shrink: 0 !important;
}

.chuppy-catalog-main {
  flex-grow: 1 !important;
  min-width: 0 !important;
}

/* Override default Bootstrap Panel wrapper in Sidebar */
.chuppy-sidebar-col .panel {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.chuppy-sidebar-col .panel-heading {
  display: none !important;
}

.chuppy-sidebar-col .panel-body {
  padding: 0 !important;
  background: transparent !important;
}

/* Sidebar */
.chuppy-catalog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chuppy-sidebar-block {
  display: flex;
  flex-direction: column;
}

.chuppy-sidebar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #463426;
  margin: 0 0 12px 0;
}

.chuppy-sidebar-cats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chuppy-sidebar-cats li a {
  display: block;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5a4a3e;
  border-radius: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.chuppy-sidebar-cats li.active a, .chuppy-sidebar-cats li a:hover {
  background: #f6efe4;
  color: #3d2f23;
  font-weight: 700;
}

/* Color Swatches */
.chuppy-color-swatches {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.color-dot:hover {
  transform: scale(1.15);
}

.color-dot.active {
  box-shadow: 0 0 0 2px #463426;
}

/* Size Box */
.chuppy-size-box {
  background: #fdfbf7;
  border: 1px solid #ede4d8;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chuppy-size-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #5a4a3e;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.chuppy-size-checkbox input {
  accent-color: #8c602e;
  cursor: pointer;
}

/* Main Catalog Area */
.chuppy-catalog-main {
  display: flex;
  flex-direction: column;
}

.chuppy-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: #7c7267;
}

.chuppy-catalog-count {
  font-weight: 500;
}

.chuppy-select-sort {
  padding: 6px 32px 6px 14px;
  border-radius: 8px;
  border: 1px solid #ede4d8;
  background-color: #ffffff;
  font-size: 12px;
  color: #463426;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23463426' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* 4-Column Grid */
.chuppy-catalog-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.chuppy-catalog-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.chuppy-catalog-card:hover {
  transform: translateY(-4px);
}

.chuppy-catalog-card .card-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding-top: 135%;
  background: #fdfbf7;
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(70, 52, 38, 0.05);
}

.chuppy-catalog-card .card-image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.chuppy-catalog-card:hover .card-image-wrap img {
  transform: scale(1.06);
}

.chuppy-catalog-card .wish-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #463426;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.chuppy-catalog-card .wish-btn:hover, .chuppy-catalog-card .wish-btn.active {
  color: #e53935;
  background: #ffffff;
}

.chuppy-catalog-card .card-info {
  display: flex;
  flex-direction: column;
}

.chuppy-catalog-card .card-cat {
  font-size: 12px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.chuppy-catalog-card .card-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #3d2f23;
  margin: 0;
  line-height: 1.3;
}

.chuppy-catalog-card .card-title a {
  color: #3d2f23;
  text-decoration: none;
}

.chuppy-catalog-card .card-title a:hover {
  color: #8c602e;
}

/* Pagination */
.chuppy-catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.chuppy-catalog-pagination .page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: #7c7267;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0 4px;
}

.chuppy-catalog-pagination .page-item.active, .chuppy-catalog-pagination .page-item:hover {
  background: #f6efe4;
  color: #8c602e;
  font-weight: 700;
}

.chuppy-catalog-pagination .page-dots {
  color: #7c7267;
  font-size: 12px;
  padding: 0 4px;
}

@media (max-width: 1100px) {
  .chuppy-catalog-grid-4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .chuppy-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  .chuppy-catalog-layout {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .chuppy-sidebar-col, .chuppy-catalog-main {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .chuppy-catalog-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .chuppy-catalog-toolbar {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .chuppy-catalog-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}


/* ==========================================================================
   SUBPAGES: PRODUCT DETAIL LUXURY UI
   ========================================================================== */
/* ==========================================================================
   SUBPAGES: PRODUCT DETAIL LUXURY UI (EXACT MATCH TO MOCKUP)
   ========================================================================== */
.chuppy-detail-wrapper {
  padding: 30px 0 60px 0;
}

.chuppy-detail-header-wrap {
  text-align: center;
  margin-bottom: 25px;
}

.chuppy-detail-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: #463426;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px 0;
}

.chuppy-detail-page-badge {
  display: inline-block;
  padding: 4px 18px;
  background: #f6efe4;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #463426;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chuppy-detail-breadcrumb {
  font-size: 12.5px;
  color: #7c7267;
  margin-bottom: 28px;
}

.chuppy-detail-breadcrumb a {
  color: #7c7267;
  text-decoration: none;
  transition: color 0.2s ease;
}

.chuppy-detail-breadcrumb a:hover {
  color: #8c602e;
}

.chuppy-detail-breadcrumb .sep {
  margin: 0 8px;
  color: #c4b5a5;
}

.chuppy-detail-breadcrumb .current {
  color: #463426;
  font-weight: 600;
}

/* 2-Column Product Detail Layout */
.chuppy-product-detail-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 45px;
  margin-bottom: 40px;
  align-items: start;
}

/* Left Gallery */
.chuppy-detail-gallery {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.chuppy-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 90px;
  flex-shrink: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chuppy-thumb-item {
  width: 90px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid #ebe4d8;
  transition: all 0.25s ease;
  background: #fdfbf7;
}

.chuppy-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chuppy-thumb-item.active, .chuppy-thumb-item:hover {
  border-color: #8c602e;
  box-shadow: 0 4px 12px rgba(140, 96, 46, 0.2);
}

.chuppy-main-image-wrap {
  position: relative;
  flex-grow: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #fdfbf7;
  box-shadow: 0 6px 24px rgba(70, 52, 38, 0.08);
}

.chuppy-main-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.chuppy-main-image-wrap .wish-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #463426;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  z-index: 2;
}

.chuppy-main-image-wrap .wish-btn:hover, .chuppy-main-image-wrap .wish-btn.active {
  color: #e53935;
  background: #ffffff;
}

/* Right Product Info */
.chuppy-detail-info {
  display: flex;
  flex-direction: column;
}

.chuppy-detail-cat {
  font-size: 13px;
  font-weight: 700;
  color: #8c602e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.chuppy-detail-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  color: #2c2520;
  text-transform: uppercase;
  margin: 0 0 22px 0;
  line-height: 1.2;
}

.chuppy-spec-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.chuppy-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}

.chuppy-spec-item .spec-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #dfc29f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c602e;
  font-size: 12px;
  flex-shrink: 0;
}

.chuppy-spec-item .spec-label {
  color: #7c7267;
  font-weight: 600;
  min-width: 85px;
}

.chuppy-spec-item .spec-val {
  color: #2c2520;
  font-weight: 700;
}

/* Size Selector */
.chuppy-size-section {
  margin-bottom: 26px;
}

.chuppy-size-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #463426;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.chuppy-size-pills {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.chuppy-size-pill {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid #ede4d8;
  background: #ffffff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5a4a3e;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.chuppy-size-pill:hover, .chuppy-size-pill.active {
  border-color: #8c602e;
  background: #f6efe4;
  color: #8c602e;
  font-weight: 700;
}

/* Actions */
.chuppy-detail-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-dat-lich {
  padding: 12px 34px;
  background: #9e6e3e;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(158, 110, 62, 0.25);
  text-decoration: none;
  display: inline-block;
}

.btn-dat-lich:hover {
  background: #855a2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(133, 90, 45, 0.35);
}

.btn-wishlist-pill {
  padding: 11px 26px;
  background: #ffffff;
  border: 1.5px solid #ede4d8;
  color: #463426 !important;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-wishlist-pill:hover {
  border-color: #8c602e;
  background: #fdfbf7;
  color: #8c602e !important;
}

/* Bottom Description */
.chuppy-detail-desc-block {
  margin-top: 25px;
  margin-bottom: 35px;
  border-top: 1px solid #ede4d8;
  padding-top: 25px;
}

.chuppy-detail-desc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  color: #8c602e;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}

.chuppy-detail-desc-text {
  font-size: 14px;
  line-height: 1.8;
  color: #5a4a3e;
}

/* 4 Commitments Horizontal Bar */
.chuppy-commitments-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.chuppy-commit-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid #ede4d8;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #463426;
  box-shadow: 0 2px 10px rgba(70, 52, 38, 0.03);
  transition: all 0.25s ease;
}

.chuppy-commit-pill:hover {
  border-color: #dfc29f;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(140, 96, 46, 0.1);
}

.chuppy-commit-pill .pill-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #dfc29f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c602e;
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .chuppy-product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chuppy-commitments-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .chuppy-detail-gallery {
    flex-direction: column-reverse;
  }
  .chuppy-thumb-list {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .chuppy-thumb-item {
    width: 70px;
    height: 85px;
  }
  .chuppy-commitments-bar {
    grid-template-columns: 1fr;
  }
}


.product-info .cart .btn-danger:hover {
  background: var(--chuppy-cream-alt);
}

/* Detail Content Tabs */
.content-html {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-lg);
  padding: 30px;
  margin-top: 30px;
  box-shadow: var(--chuppy-shadow-sm);
  font-size: 14px;
  line-height: 1.8;
}

/* ==========================================================================
   SUBPAGES: NEWS & BLOG
   ========================================================================== */
.news-item {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--chuppy-transition);
  display: flex;
  flex-direction: column;
}

.news-item:hover {
  border-color: var(--chuppy-gold-light);
  box-shadow: var(--chuppy-shadow-md);
  transform: translateY(-4px);
}

.news-item .image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
  background: #fdfbf7;
}

.news-item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--chuppy-transition);
}

.news-item:hover .image img {
  transform: scale(1.06);
}

.news-item .info {
  padding: 16px;
}

.news-item .info h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.news-item .info h3 a {
  color: var(--chuppy-brown);
}

.news-item .time {
  font-size: 11px;
  color: var(--chuppy-text-muted);
  margin-bottom: 8px;
}

.news-item .desc {
  font-size: 12.5px;
  color: var(--chuppy-text-muted);
  line-height: 1.5;
}

/* Blog Article Detail */
.page-detail {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-lg);
  padding: 35px;
  margin: 25px 0 50px 0;
  box-shadow: var(--chuppy-shadow-sm);
}

.page-detail h1.title {
  font-size: 28px;
  font-weight: 800;
  color: var(--chuppy-brown);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

/* ==========================================================================
   SUBPAGES: CONTACT & BOOKING
   ========================================================================== */
.contact {
  padding: 25px 0 50px 0;
}

.contact h1.title {
  font-size: 28px;
  font-weight: 800;
  color: var(--chuppy-brown);
  text-align: center;
  margin: 0 0 25px 0;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--chuppy-border-light);
  border-radius: var(--chuppy-radius-lg);
  padding: 28px;
  box-shadow: var(--chuppy-shadow-sm);
  margin-bottom: 25px;
}

.contact-form-control {
  width: 100%;
  padding: 11px 16px;
  font-size: 13px;
  border: 1px solid var(--chuppy-border);
  border-radius: var(--chuppy-radius-sm);
  outline: none;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.contact-form-control:focus {
  border-color: var(--chuppy-gold);
  box-shadow: 0 0 0 3px var(--chuppy-gold-glow);
}

