/* ======================================
       GLOBAL VARIABLES & RESET
    ====================================== */




    
    :root {
      --bg:        #FBF7F6;
      --primary:   #5a2d2d;
      --secondary: #7d6f6f;
      --text-dark: #333333;
      --card-bg:   #FBF7F6;
      --radius:    25px;
      --gap:       1.5rem;
      --font:      'Helvetica Neue', Arial, sans-serif, Montserrat;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      height: 100%;
    }
    body {
     font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden; /* ADD THIS */
    }
	html {
  box-sizing: border-box;
  overflow-x: hidden; /* ✅ Just in case */
}
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
    }

    /* ======================================
       HEADER
    ====================================== */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 115px;
      background: #EDE2DE;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      
      top: 0;
      z-index: 100;
    }
    header .logo {
      font-size: 40px;
      font-weight: bold;
      color: var(--primary);
	  font-family: Roboto;
    }
    header nav ul {
      display: flex;
      gap: 1.75rem;
      list-style: none;
	  justify-content: center;
    }
    header nav a {
      color: var(--text-dark);
      font-weight: 700;
	  font-size: 25px;
	  font-family: Montserrat;
	   text-decoration: none;
    }
    header .btn-login {
      background: var(--primary);
      color: #fff;
      padding: 13px 40px;
      border-radius: 100px;
      font-weight: bold;
	  font-size: 20px;
      transition: background 0.2s;
	  font-family: Montserrat;
    }
    header .btn-login:hover {
      background: #4b2525;
      /* or: background: #4b2525; */
    }
    .user-dropdown { position: relative; }

    .user-dropdowns { position: relative;background: #EDE2DE; color: #EDE2DE; display: none;}
    

    /* make the profile clickable without button styles */
    .user-toggle {
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
    }
    .user-toggle:focus-visible { outline: 2px solid #7D5B59; border-radius: 12px; }

    .user-toggles {
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
    }
    .user-toggles:focus-visible { outline: 2px solid #7D5B59; border-radius: 12px; }
    
    /* dropdown panel */
    .user-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: -40px;
      min-width: 255px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,.12);
      padding: 10px;
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity .15s ease, transform .15s ease;
      z-index: 1000;
      
    }
    
    .fa-sign-out:before{
      font-size: 25px;
    }
    
    /* show on hover or focus (desktop + keyboard) */
    .user-dropdown:hover .user-menu,
    .user-dropdown:focus-within .user-menu,
    .user-dropdown.open .user-menu {        /* mobile click/tap */
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .user-dropdowns:hover .user-menu,
    .user-dropdowns:focus-within .user-menu,
    .user-dropdowns.open .user-menu {        /* mobile click/tap */
      opacity: 0;
      transform: translateY(0);
      pointer-events: auto;
    }
    
    /* items */
    .user-menu-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      text-decoration: none;
      color: #7D5B59;
      border-radius: 10px;
      font-family: Montserrat, sans-serif;
      font-weight: 600;
    }
    .user-menu-item:hover { background: #f7f2f1; }
    
    .user-menu-item svg {
      width: 25px;
      fill: currentColor; flex-shrink: 0;
    }
    
    /* your existing styles (kept) */
    header .user-login {
      color: #7D5B59;
      border-radius: 100px;
      font-weight: bold;
      font-size: 20px;
      transition: background 0.2s;
      font-family: Montserrat;
    }
    header .user-image {
      width: 30px; height: 30px;
      border-radius: 50%;
      object-fit: cover;
    }
    .user-profile {
      display: flex; align-items: center; gap: 10px;
    }
    .user-profiles {
      display: flex; align-items: center; gap: 10px; color: #EDE2DE;pointer-events: none;
    }
	.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
	
	

    /* ======================================
       HERO SECTION
    ====================================== */
    .hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18rem 2rem;
  background: #EDE2DE;
}
.hero-content {
  flex: 1;
  color: var(--text-dark);
  max-width: 500px;
  margin-left:207px;
  font-family: Montserrat;
  font-weight: 800;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 260px;
  height: auto;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  object-fit: cover;
}
    .hero-content h1 {
      font-size: 2.75rem;
      margin-bottom: 30px;
      line-height: 1.2;
    }
    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .btn-hero {
      background: var(--primary);
      color: #fff;
      padding: 13px 50px;
      border-radius: 100px;
      font-weight: bold;
	  font-size: 20px;
      transition: background 0.2s;
	  font-family: Montserrat;
    }
    .btn-hero:hover {
      background: #4b2525; /* slightly darker */
    }

    /* ======================================
       NEW COLLECTION SECTION
    ====================================== */
    .new-collection {
      padding: 18rem 2rem;
      text-align: center;
      background: var(--card-bg);
      position: relative;

    }
    .new-collection h2 {
      font-size: 2rem;
      color: var(#EDE2DE);
      margin-bottom: var(--gap);
    }
    .collection-wrapper {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .collection-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 280px;
      text-align: center;
    }
    .collection-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .collection-card .card-buttons {
      padding: 0.75rem 1rem 1.25rem;
    }
    .btn-collection {
      width: 45%;
      margin: 0.5rem 2.5%;
      padding: 0.5rem 0;
      border: none;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-collection.primary {
      background: var(--primary);
      color: #fff;
      padding: 13px 50px;
      border-radius: 100px;
      font-weight: bold;
	  font-size: 20px;
      transition: background 0.2s;
	  font-family: Montserrat;
    }
    .btn-collection.primary:hover {
      background: #4b2525;
    }
    .btn-collection.outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    .btn-collection.outline:hover {
      background: var(--primary);
      color: #fff;
    }

    .slider-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
      max-width: 1400px; /* Enough for 4 cards ~280px each + gaps */
      margin: 1px auto;
      /*mask-image: linear-gradient(to right, black 86%, transparent 100%);*/
    }
    
    .slider-controls {
      display: flex;
      gap: 10px;
    }
    
    
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 60px;
      height: 60px;
      font-size: 100px;
      background-color: #fff;
      color: #4b2525;
      border: none;
      border-radius: 0;
      cursor: pointer;
      transition: background-color 0.3s ease;
      opacity: 0;
      transition: opacity .25s ease;
    }
    
    #collectionSlider:hover .slider-btn,
    .slider-btn:hover {
      opacity: 1;
    }

    .slider-btn.left {
      left: 225px;
      top: 50%;
  transform: translateY(-50%);
  background: transparent;
    }
    
    .slider-btn.right {
      right: 185px;
      top: 50%;
  transform: translateY(-50%);
  background: transparent;
    }
    .slider-btn:hover {
      color: #7D5B59; /* darker brown */
    }
    
    .cardss{
      position:relative;
      height:300px;                 /* a little taller like the design   */
      border-radius:14px;
      overflow:hidden;
      background:#333 center/cover; /* acts as fallback colour            */
      box-shadow:0 6px 10px rgba(0,0,0,.12);
      flex: 0 0 285px;
    }
    .cardss-pc-view{
      display: flex;
      flex: nowrap;
    }

    .cards-gridss{
      display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 3.5rem;
        padding: 1rem 83rem;
        scrollbar-width: none;
       
      }
    

    /* ======================================
       EXPERIENCE SECTION
    ====================================== */
    .experience {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 18rem 2rem;
      gap: 2rem;
      background: var(--card-bg);
    }
    .exp-text{
      flex: 1 1 300px;
      max-width: 590px;
    }
	 .exp-image {
     flex: 1 1 300px;
      max-width: 500px;
      margin-right: -260px;
    }
    .exp-text h3 {
      font-size: 36px;
      color: #000000;
      margin-bottom: 0.75rem;
      font-family: Montserrat;
      font-weight: 800;
    }
    .exp-text p {
      font-size: 20px;
      margin-bottom: 1.25rem;
      color: #000000;
      font-family: Montserrat;
      font-weight: 500;
    }
	.exp-text strong{
	color: #7D5B59;
	}
	
    .btn-exp {
      background: var(--primary);
      color: #fff;
      padding: 13px 50px;
      border-radius: 100px;
      font-weight: bold;
	  font-size: 20px;
      transition: background 0.2s;
	  font-family: Montserrat;
    }
    .btn-exp:hover {
      background: #4b2525;
    }
   .exp-image-wrapper {
  width: 399px;
  height: 399px;
  border-radius: 50%;
  background: linear-gradient(145deg, #EDE2DE, #EDE2DE00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(204, 174, 171, 1);
  margin-left:-200px;
}

.exp-image img {
  width: 281px;
  height: 399px;
  border-radius: 100%;
  object-fit: cover;
}

    /* ======================================
       EXPLORE OUR DESIGNS SECTION
    ====================================== */
    .explore-designs {
      padding: 18rem 2rem;
      text-align: center;
      background: var(--bg);
    }
    .explore-designs h2 {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: var(--gap);
    }
    .designs-wrapper {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .design-thumb {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 200px;
      text-align: center;
    }
    .design-thumb img {
      width: 100%;
      height: 120px;
      object-fit: fill;
    }
    .design-thumb .thumb-buttons {
      padding: 0.5rem 0.75rem 1rem;
    }
    .thumb-buttons .btn-thumb {
      width: 40%;
      margin: 0.3rem 5%;
      padding: 0.45rem 0;
      border: none;
      border-radius: var(--radius);
      font-size: 0.9rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-thumb.primary {
      background: var(--primary);
      color: #fff;
    }
    .btn-thumb.primary:hover {
      background: #4b2525;
    }
    .btn-thumb.outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    .btn-thumb.outline:hover {
      background: var(--primary);
      color: #fff;
    }
    .view-all-btn {
      background: var(--primary);
      color: #fff;
      padding: 13px 50px;
      border-radius: 100px;
      font-weight: bold;
	  font-size: 20px;
      transition: background 0.2s;
	  font-family: Montserrat;
    margin-top: 20px;
    }
    .view-all-btn:hover {
      background: #4b2525;
    }
 /* === DIGITAL-CARD GRID ============================================ */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:5rem;
  padding: 100px 200px;
  margin-top: -70px;
  
}
.cards-grids{
display:grid;
  grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
  gap:7rem;
  padding: 100px 200px;
  margin-top: -70px;
 
}

.card{
  position:relative;
  height:300px;                 /* a little taller like the design   */
  border-radius:14px;
  overflow:hidden;
  background:#333 center/cover; /* acts as fallback colour            */
  box-shadow:0 6px 10px rgba(0,0,0,.12);
}

/* image overlay that “dims” the picture so white buttons stay legible */
.card::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(
              to bottom,
              rgba(0,0,0,.00) 35%,
              rgba(0,0,0,.55) 95%);
}

/* holds the title + buttons */
.card-content {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.card-title {
  color: white;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  font-family: Roboto;
}

.actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.7rem;
}

.actions button {
  padding: 0.65rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.25s ease;
}

/* Book button (filled) */
.actions button:first-child {
  background-color: #EDE2DE;
  color: #7D5B59;
  border: none;
  font-size: 15px;
  font-family: Montserrat;
}

/* Preview button (transparent) */
.actions button:last-child {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  font-size: 15px;
  font-family: Montserrat;
}

.actions button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

    /* Pagination */
    .pagination {
      margin: 3rem 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .pagination a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-family: Montserrat;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      color: #191212;
      font-weight: 700;
    }

    .pagination a.active {
      background: var(--primary);
      color: var(--text-light);
      font-weight: 700;
      font-family: Montserrat;
    }
    /* ======================================
       PACKAGES SECTION
    ====================================== */
    .packages-section {
      padding: 101px 2rem;
      text-align: center;
      background: var(--card-bg);
    }
    .packages-section h2 {
      font-size: 43px;
      margin-bottom: var(--gap);
      color: #191212;
      text-transform: uppercase;
      font-weight: 500;
      font-family: Montserrat;
    }
    .packages-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 68px;
      margin-top: 75px;
    }
    .packagess-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 68px;
      margin-top: 75px;
    }
    .package-card {
      background:#FBF7F6;
      border:0;
      border-radius:20px;
      width:340px;
      padding:2.25rem 2rem;
      display:flex;
      flex-direction:column;
      
      text-align:center;
      box-shadow:0 6px 22px rgba(0,0,0,.06);
    }
	.package-cards {
    background: #FBF7F6;
    border:2px solid #EDE2DE;
    border-radius:20px;
    width:340px;
    padding:2.25rem 2rem;
    display:flex;
    flex-direction:column;
    
    text-align:center;
    box-shadow:0 6px 22px rgba(0,0,0,.06);
    }
    .package-cardsh1,
    .package-card h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 42px;
	  font-family:Montserrat;
    font-weight: 600;
    }
    .package-card .price {
      text-decoration: line-through;
      color: #BBA8A7; /* faded color */
      font-size: 32px;
      margin-left: 8px;
    }

    .package-cards .old-price {
      text-decoration: line-through;
  color: #BBA8A7; /* faded color */
  font-size: 28px;
  margin-left: 10px;
  font-family: Montserrat;
    }

    .package-cards {
      background: #FBF7F6;
      border:2px solid #EDE2DE;
      border-radius:20px;
      width:340px;
      padding:2.25rem 2rem;
      display:flex;
      flex-direction:column;
      
      text-align:center;
      box-shadow:0 6px 22px rgba(0,0,0,.06);
      }
      .package-cardsh1,
      .package-card h3 {
        color: var(--primary);
        margin-bottom: 8px;
        font-size: 42px;
      font-family:Montserrat;
      font-weight: 600;
      }
	
	 /* --- Inject "Most Popular" badge on the middle card --- */
.packages-wrapper .package-cards:nth-child(2) h1::after{
  content:"Most Popular";
  position:relative;
  top:-2px;
  margin-left:8px;
  display:inline-block;
  padding:3px 10px;
  font-size:11px;
  font-weight:700;
  color:#fff;
  background:#7D5B59;
  border-radius:999px;
}
    .package-cards .price {
      font-size:40px;
      font-weight:700;
      color:#111;
      margin-bottom:.35rem;
      font-family: Montserrat;
      margin-left: -95px;
    }

    .package-cards .prices {
      font-size:40px;
      font-weight:700;
      color:#111;
      margin-bottom:.35rem;
      font-family: Montserrat;
      margin-left: -95px;
    }

    /* --- Tiny subtitle under price (CSS-only, per column) --- */
.packages-wrapper .package-cards:nth-child(1) .price::after{
  content:"Everything you need to get started";
  margin-left: 136px;
  color: #BBA8A7;
  font-size: 14px;
}
.packages-wrapper .package-cards:nth-child(2) .price::after{
  content:"Our most popular choice";
  margin-left: -90px;
  color: #7D5B59;
  font-size: 14px;
}
.packages-wrapper .package-cards:nth-child(3) .price::after{
  content:"For couples who want to stand out";
  margin-left: 0px;
  color: #BBA8A7;
  font-size: 14px;
}

.packages-wrapper .package-cards:nth-child(0) .prices::after{
  content:"Our most popular choice";
  margin-left: -90px;
  color: #7D5B59;
  font-size: 14px;
}

.packagess-wrapper .package-cards:nth-child(2) h1::after{
  content:"Most Popular";
  position:relative;
  top:-2px;
  margin-left:8px;
  display:inline-block;
  padding:3px 10px;
  font-size:11px;
  font-weight:700;
  color:#fff;
  background:#7D5B59;
  border-radius:999px;
}
  

    /* --- Tiny subtitle under price (CSS-only, per column) --- */
.packagess-wrapper .package-cards:nth-child(1) .price::after{
  content:"Everything you need to get started";
  margin-left: 136px;
  color: #BBA8A7;
  font-size: 14px;
}
.packagess-wrapper .package-cards:nth-child(2) .price::after{
  content:"Our most popular choice";
  margin-left: 55px;
  color: #7D5B59;
  font-size: 14px;
}

.csv-button{
  background: #128C4D;
  border-radius: 25px;
  padding: 13px 40px;
  border: 1px solid #128C4D;
  font-family: Montserrat;
  font-size: 20px;
  position: absolute;
  top: 142px;
  right: 100px;
  color: #F3F9EE;

}
.packagess-wrapper .package-cards:nth-child(3) .price::after{
  content:"For couples who want to stand out";
  margin-left: 105px;
  color: #BBA8A7;
  font-size: 14px;
}
.package-cards .price::after{
  display:block;
  margin-top:.25rem;
  font-size:13px;
  color:#777;
  font-weight:500;
}
.package-cards .prices::after{
  display:block;
  margin-top:.25rem;
  font-size:13px;
  color:#777;
  font-weight:500;
}

    .features {
      list-style:none;
  padding:0;
  width:100%;
  max-width:260px;
  text-align:left;
    }
    .features li {
      display:flex; align-items:center;
      gap:8px;
      font-size:15px;
      color:#BBA8A7;
      margin:.45rem 0;
	  font-family:Montserrat;
    }
    .package-cards .features li::before {
      content: "✔";
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 18px;
      height: 18px;
      border: 2px solid #7D5B59;
      border-radius: 50%;
      color: #7D5B59;
      font-size: 12px;
      font-weight: bold;
    }
    .btn-preview {
      background: #EDE2DE;
      border:none;
      border-radius:20px;
      padding:17px 71px;
      font-weight:800;
      letter-spacing:.02em;
      margin:.9rem -22px 1.1rem;
      position:relative;
      font-size:0;         
	  font-family: Montserrat;
    }
    .btn-preview-free {
      background: #EDE2DE;
      border:none;
      border-radius:20px;
      padding:17px 83px;
      font-weight:800;
      letter-spacing:.02em;
      margin:.9rem -22px 1.1rem;
      position:relative;
      font-size:0;         
	  font-family: Montserrat;
    }
    .btn-preview::after{
      content:"UNLOCK DESIGN";
      font-size:20px;
      line-height:1;
      color:inherit;
    }

    .btn-preview-free::after{
      content:"DESIGN NOW";
      font-size:20px;
      line-height:1;
      color:inherit;
    }
    .btn-preview:hover {
      background: #4b2525;
      color:#fff;
    }
    .btn-preview-free:hover {
      background: #4b2525;
      color:#fff;
    }

    .packages-wrapper .package-cards:nth-child(2){
      background: radial-gradient(
    circle,
    #FBF7F6 0%,
    #FBF7F6 46%,
    #F0E6E3 97%,
    #EDE2DE 0%
  );

  
  border: 2px solid #EDE2DE;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
    }

    .packagess-wrapper .package-cards:nth-child(2){
      background: radial-gradient(
    circle,
    #FBF7F6 0%,
    #FBF7F6 46%,
    #F0E6E3 97%,
    #EDE2DE 0%
  );

  
  border: 2px solid #EDE2DE;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
    }
    
    .packages-wrapper .package-cards:nth-child(2) .btn-preview{
      background:#7D5B59; color:#fff;
    }
    .packages-wrapper .package-cards:nth-child(2) .btn-preview:hover{
      filter:brightness(.95);
    }

    .packagess-wrapper .package-cards:nth-child(2) .btn-preview{
      background:#7D5B59; color:#fff;
    }
    .packagess-wrapper .package-cards:nth-child(2) .btn-preview:hover{
      filter:brightness(.95);
    }

    /* ======================================
       FOOTER
    ====================================== */
   
	
	.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
header .phone-login{
  position: absolute;
    right: 1.2rem;
    top: 1rem;
    font-size: 30px;
    display:block;
	color: var(--primary);
	display:none;
  }

  .vi-up-divider{
    height: 2px;
    background: #EDE2DE;
    margin: 10px -32px;
    width: 124%;
  }
  .vi-ups-divider{
    height: 2px;
    background: #EDE2DE;
    margin: 10px -32px;
    width: 124%;
  }

  .event-details h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: -10px;
    font-family: Montserrat;
    color: #191212;
  }
    /* ======================================
       RESPONSIVE ADJUSTMENTS
    ====================================== */
    @media (max-width: 800px) {
      .experience {
        flex-direction: column;
        text-align: center;
      }
      .experience .exp-image {
        margin-top: 1.5rem;
      }
      .collection-wrapper, .designs-wrapper, .packages-wrapper,.packagess-wrapper {
        justify-content: center;
      }
      .packages-wrapper{ gap:24px; }
      .packagess-wrapper{ gap:24px; }
      .package-cards{ width:100%; max-width:360px; }
    }
    @media (max-width: 500px) {
      header {
        flex-direction: column;
        gap: 1rem;
      }
      .collection-card, .design-thumb, .package-card,.package-cards {
        width: 100%;
      }
      .hero-content h1 {
        font-size: 2.25rem;
      }

      

      .delete-button {
        padding: 10px 30px;
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        color: #3e1f1f;
        border: 1px solid #3e1f1f;
        background-color: transparent;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: none;
      }

      .delete-label {
        padding: 15px 85px;
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        color: #3e1f1f;
        border: 1px solid #3e1f1f;
        background-color: transparent;
        border-radius: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
        
      }

      
    
      .primarys-btn{
        background-color: #7D5B59;
        color: white;
        padding: 15px 44px !important;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        margin-top: 20px;
        width: fit-content;
        font-size: 20px;
        font-family: Montserrat;
        margin-left: 0px;
        font-weight: bold;
      }

      .secondary-btn{
        background-color: #7D5B59;
        color: white;
        padding: 10px 11px !important;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        margin-top: 20px;
        width: fit-content;
        font-size: 20px;
        font-family: Montserrat;
        margin-left: 0px;
        font-weight: bold;
      }

      .save-btn {
        background-color: #7D5B59;
        color: white;
        padding: 20px 35px !important;
        border: none;
        border-radius: 40px;
        cursor: pointer;
        margin-top: -5px;
        width: fit-content;
        font-size: 20px;
        font-family: Montserrat;
        margin-left: 0px;
        font-weight: bold;
       
      }
    
      .cancel-btn{
        background-color: transparent;
        color: #7D5B59;
        padding: 15px 15px !important;
        border: 5px solid #7D5B59;
        border-radius: 40px;
        cursor: pointer;
        margin-top: -69px;
        width: fit-content;
        font-size: 20px;
        font-family: Montserrat;
        margin-left: 160px !important;
        font-weight: bold;
        
      }

      .account-form {
        display: flex;
        flex-direction: column;
       
        max-width: 315px !important;
        margin-top: 25px;
      }

      .packages-wrapper .package-cards:nth-child(2) .price::after{
        content:"Our most popular choice";
        margin-left: -90px;
        color: #7D5B59;
        font-size: 14px;
      }

      .packages-wrapper .package-cards:nth-child(3) .price::after{
        content:"For couples who want to stand out";
        margin-left: 5px;
        color: #BBA8A7;
        font-size: 14px;
      }

      .packagess-wrapper .package-cards:nth-child(2) .price::after{
        content:"Our most popular choice";
        margin-left: 52px;
        color: #7D5B59;
        font-size: 14px;
      }

      .packagess-wrapper .package-cards:nth-child(3) .price::after{
        content:"For couples who want to stand out";
        margin-left: 102px;
        color: #BBA8A7;
        font-size: 14px;
      }
      .packagess-wrapper .package-cards:nth-child(1) .price::after{
        content:"Everything you need to get started";
        margin-left: 140px;
        color: #BBA8A7;
        font-size: 14px;
      }


      .sidebars {
        width: 220px;
        
        padding-right: 20px;
        display: block !important;
      }
      
      .sidebars ul {
        list-style: none;
        padding: 0;
      }
      
      .sidebars li {
        padding: 10px 0;
        cursor: pointer;
        color: #555;
        font-family: Montserrat;
      }
      
      .sidebars li.active {
        font-weight: bold;
        color: #000;
        font-family: Montserrat;
       
        /* padding-right: 79px; */
        color: #3d2a22;
        /* gap: 20px; */
        margin-right: -20px;
      }

      .btn-preview-free {
        background: #EDE2DE;
        border:none;
        border-radius:20px;
        padding:17px 65px;
        font-weight:800;
        letter-spacing:.02em;
        margin:.9rem -22px 1.1rem;
        position:relative;
        font-size:0;         
      font-family: Montserrat;
      }

      .btn-preview {
        background: #EDE2DE;
        border:none;
        border-radius:20px;
        padding:17px 49px;
        font-weight:800;
        letter-spacing:.02em;
        margin:.9rem -22px 1.1rem;
        position:relative;
        font-size:0;         
      font-family: Montserrat;
      }
	  .hero-content {
    margin-left: 16px; /* ✅ Make this smaller */
    margin-right: 16px; /* ✅ Add this to center properly */
    margin-top: -40px;
  }
      .hero-content p {
        font-size: 1rem;
      }
    }
	.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.desktop-nav {
  display: flex;
}
.mobile-nav {
display:none;
cursor: pointer;
}

  


.left-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer */
/* PC FOOTER ONLY – Separate class names to avoid kacau phone */
.viteup-footer-pc {
  background-color: #F7EDEB;
  padding: 3rem 5%;
  font-family:Montserrat;
  color: #333;
}

.footer-container-pc {

  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: nowrap;
}

.footer-left-pc {
  max-width: 35%;
}

.footer-left-pc h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: -17px;
  font-weight:bold;
  font-family:Montserrat;
}

.footer-line{
  width:200%;
  border-radius: 15px;
  background-color: #1912124D;
  margin-left: -109px;
  height:1px;
  margin-bottom: -215px;
  margin-top: 50px;
}

.footer-left-pc address,
.footer-left-pc p {
  font-size: 1rem;
  margin: 2.4rem 0;
  font-weight:bold;
  font-family:Montserrat;
}

.footer-socials-pc {
  margin-top: 1rem;
  font-size: 1.3rem;
  display: flex;
  gap: 1rem;
}

.footer-right-pc {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  margin-top: 250px;
  margin-bottom: -25px;
  align-items: center;
}

.footer-links-pc {
  font-size: 1rem;
  display: flex;
  gap: 1rem;
}

.footer-links-pc a {
  color: #333;
  text-decoration: none;
}

.footer-links-pc a:hover {
  text-decoration: underline;
}

.copyright-pc {
  font-size: 14px;
    font-family: Montserrat;
    font-weight: bold;
}

.viteup-footer {
    display: none;
  }

.socials img {
  margin-right: 10px;
}

form {
  width: 100%;
  text-align: left;
}

.form-group input:hover {
  border-color: #5a2d2d; /* Hover effect */
  label-color: #5a2d2d;
  font-color: #5a2d2d;
}

.form-group label:hover {
  color: #5a2d2d;
  
}

.form-group {
  position: relative;
  margin-bottom: 25px;
  right: 5.3rem;
}

  .form-group:hover label {
      color: #7D5B59;
      font-weight: 1000;
      
      
      
  }

  .form-group input {
      width: 602px;
      padding: 2.2rem 1rem 0.4rem; /* Extra top padding for label */
      font-size: 1rem;
      border: 0.25px solid #7D5B59;
      border-radius: 8px;
      background: transparent;
      outline: none;
      transition: border-color 0.3s ease;
      color: #191212;
  }


  .form-group label {
      position: absolute;
      top: 50%;
      left: 1rem;
      transform: translateY(-50%);
      background: #FBF7F6; /* page background color */
      padding: 0 4px;
      color: #7D5B59;
      font-size: 1rem;
      font-family: Montserrat;
      pointer-events: none;
      transition: all 0.3s ease;
  }


  /* Focused or has content */
  .form-group.focused label {
      top: 0;
      left: 0.8rem;
      transform: translateY(-50%) scale(0.8); /* Shrink a bit */
      color: #5a2d2d;
      background: #FBF7F6;
  }

  .form-group input:focus {
      border-color: #5a2d2d;
      
  }

  /* When focused, border highlight */
  .form-group.focused input {
      border-color: #5a2d2d;
      
  }

  .account-page {
    display: flex;
    padding: 40px;
  }
  
  .sidebar {
    width: 220px;
    border-right: 1px solid #ddd;
    padding-right: 20px;
    
  }
  
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .sidebar li {
    padding: 10px 0;
    cursor: pointer;
    color: #555;
  }
  
  .sidebar li.active {
    font-weight: bold;
    color: #000;
    font-family: Montserrat;
    border-right: 3px solid #6b4a3a;
    /* padding-right: 79px; */
    color: #3d2a22;
    /* gap: 20px; */
    margin-right: -20px;
  }

  .sidebars {
    width: 220px;
    
    padding-right: 20px;
    display: none ;
  }
  
  .sidebars ul {
    list-style: none;
    padding: 0;
  }
  
  .sidebars li {
    display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      text-decoration: none;
      color: #7D5B59;
      border-radius: 10px;
      font-family: Montserrat, sans-serif;
      font-weight: 600;
  }
  
  .sidebars li.active {
    font-weight: bold;
    color: #000;
    font-family: Montserrat;
    
    /* padding-right: 79px; */
    color: #3d2a22;
    /* gap: 20px; */
    margin-right: -20px;
  }
  
  .account-content {
    flex-grow: 1;
    padding-left: 195px;
  }

  .profile-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  
  .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .profile-name {
    font-size: 30px;
    font-weight: bold;
    font-family: Montserrat;
  }
  
  .account-form {
    display: flex
    ;
        flex-direction: column;
        /* align-items: center; */
        
        max-width: 600px;
    margin-top: 25px;
  }
  
  .account-form label {
    font-weight: bold;
    margin-top: 20px;
    font-family: Montserrat;
  }
  
  .account-form input,
  .account-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
  }
  
  .form-groups {
    position: relative;
    margin-bottom: 20px;
  }
  
  .form-groups input,
  .form-groups select {
    width: 100%;
    padding: 1.2rem 1rem 0.4rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat';
    font-weight: 700;
  }
  
  .form-groups label {
    position: absolute;
    top: 12%;
    left: 1rem;
    transform: translateY(-50%);
    font-family: 'Montserrat';
    padding: 0 4px;
    color: #aaa;
    font-size: 1rem;
    font-family: Montserrat;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form-groups.focused label,
  .form-groups input:focus + label {
    top: 0;
    left: 0.8rem;
    transform: translateY(-125%) scale(0.8);
    color:#5A2D2D;
    background: #FBF7F6;
  }
  
  
  
  .gender-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
  }
  
  .gender-group label {
    font-weight: normal;
    font-family: 'Montserrat';
  }

  .primary-btn{
    background-color: #7D5B59;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 0px;
    font-weight: bold;
  }

  .primarys-btn{
    background-color: #7D5B59;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 0px;
    font-weight: bold;
  }

  .secondary-btn{
    background-color: #7D5B59;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 0px;
    font-weight: bold;
  }


  
  .save-btn {
    background-color: #7D5B59;
    color: white;
    padding: 20px 120px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: -5px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 0px;
    font-weight: bold;
   
  }

  .cancel-btn{
    background-color: transparent;
    color: #7D5B59;
    padding: 15px 100px;
    border: 5px solid #7D5B59;
    border-radius: 40px;
    cursor: pointer;
    margin-top: -69px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 303px;
    font-weight: bold;
    
  }
  
  .delete-container {
    border-top: 1px solid #d3cfcf;
    border-bottom: 1px solid #d3cfcf;
    padding: 20px 0;
    margin: 40px 0;
    background-color: #fdf9f8; /* Matches light background */
    margin-bottom: 5rem;
  }
  
  .delete-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }
  
  .delete-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #2b2b2b;
    font-weight: 600;
  }
  
  .delete-button {
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #3e1f1f;
    border: 1px solid #3e1f1f;
    background-color: transparent;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .delete-button:hover {
    background-color: #3e1f1f;
    color: white;
  }

  .delete-icon {
    color: #7D5B59;
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: -6px;
    font-size: 28px;
  }

  .options-icon {
    color: #7D5B59;
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 55px;
    font-size: 28px;
    display: none;
  }


  .hero-tutorial {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(tutorial.jpg) center / cover no-repeat;
    
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 100px;
    font-family: 'Montserrat';
  }

  .tabs {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .tabss {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .tabss-button {
    padding: 0.6rem 6.2rem;
    border-radius: 20px;
    background: #ffffff00;
    font-weight: bold;
    cursor: pointer;
    border-color: #7d5b59;
    border-width: thin;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 15px;
  }

  .tabss-button.active {
    background: #7D5B59;
    color: white;
  }
  .tab-button {
    padding: 0.6rem 6.2rem;
    border-radius: 10px;
    background: #ffffff00;
    font-weight: bold;
    cursor: pointer;
    border-color: #7d5b59;
    border-width: thin;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 15px;
  }

  .tab-button.active {
    background: #7D5B59;
    color: white;
  }

  .tutorial-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .tutorial-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .tutorial-card h4 {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inter;
  }

  .step-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-right:132px;
    font-family: 'Montserrat';
  }
  
      .tutorial-video {
        width: 55%;
        height: 200px;
        background: #7D5B59;
        border-radius: var(--radius);
        align-self: center;
      }

/* =========================
   HERO BANNER
========================= */
.hero-contact{
  /*background:#ede3df;*/
  height:180px;
  display:flex;
  align-items: flex-start;
  justify-content:center;
  text-align:center;
}
.hero-contact h1{
  font-size:30px;
  letter-spacing:2px;
  font-weight:700;
  color:#191212;
  margin-top: 25px;
  font-family:Montserrat;
}

/* =========================
   CONTACT INFO BAR
========================= */
.contact-info{
  margin:3rem auto 2.5rem;
  max-width:680px;
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:1.5rem;
}
.contact-item{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:20px;
  color:var(--text-dark);
  font-family: 'Montserrat';
}
.contact-item img{
  width:22px;
  filter:invert(20%) sepia(12%) saturate(159%) hue-rotate(330deg) brightness(85%) contrast(85%);
}

/* =========================
   FORM SECTION
========================= */
.form-wrapper{
  max-width:500px;
  margin:0 auto 4rem;
  text-align:center;
  margin-top: 40px;
}
.form-wrapper h2{
  font-size:22px;
  font-weight:700;
  margin-bottom:1.5rem;
  font-family: Montserrat;
}
form{
  display:flex;
  flex-direction:column;
  gap:0rem;
}


  
  .form-group textarea {
 
  top: 0.5rem;
  left: 0.8rem;
  min-height: 150px;
  resize: vertical;
   background: #FBF7F6;
   padding-top: 2rem;
   border: 1px solid #7D5B59;
   border-radius: 8px;
   width: 121%;
}

.form-group textarea:hover {
  border-color: #5a2d2d;
}
.form-group textarea:focus {
  border-color: #5a2d2d;
}
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  left: 0.8rem;
  transform: translateY(-50%) scale(0.8);
  color: #5a2d2d;
  background: #FBF7F6;
}
input, textarea{
  width:100%;
  padding:.7rem 1rem;
  font-size:.9rem;
  border:1px solid #d0c6c6;
  border-radius:4px;
  background:#fff;
  font-family: 'Montserrat';
}
textarea{resize:vertical;min-height:140px}
.btn-submit{
  align-self:flex-end;
  background: var(--primary);
  color: #fff;
  padding: 15px 40px;
  border-radius: 100px;
  font-weight: bold;
font-size: 20px;
  transition: background 0.2s;
font-family: Montserrat;
}
.btn-submit:hover{background:#4b2525}

.account-content > section { display: none; }
.account-content > section.active { display: block; }

 
/* user account payment css */
#payment .payment-view { display: none; }
#payment .payment-view.active { display: block; }

.back-link{
  background: transparent; border: 0; cursor: pointer;
  font-family: Montserrat; color:#6b4a3e; margin: 0 0 12px 0;
  font-size: 20px;
}
.back-link:hover{ text-decoration: underline; }



.crumb-link{ cursor:pointer; color:#6b4a3a; }
.crumb-link:hover{ text-decoration:underline; }

.event-image {
  width: 251.11px;
  height: 351px;
  background-color: #7D5B56;
  flex-shrink: 0;
}


	
@media (max-width: 769px) {
	header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  position: relative;
  
}
.viup-total{display:flex;justify-content:space-between;align-items:center;margin-top:200px;color:#9a8786;font-weight:600;}

.user-dropdowns:hover .user-menu,
.user-dropdowns:focus-within .user-menu,
.user-dropdowns.open .user-menu {        /* mobile click/tap */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.user-dropdowns { position: relative;background: #EDE2DE; color: #EDE2DE; display: block;}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  display: none;
}

.user-profiles {
  display: flex; align-items: center; gap: 10px; color: #7D5B59;pointer-events: none;
}

.sidebar {
  width: 220px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
  display: none;
}

.account-content {
  flex-grow: 1;
  padding-left: 5px;
}



  .exp-image-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(145deg, #EDE2DE, #EDE2DE00);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(204, 174, 171, 1);
  margin-left:10px;
}

.exp-image img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  object-fit: cover;
  
}

.exp-image {
  flex: 1 1 300px;
   max-width: 500px;
   margin-right: 0px;
 }

header .user-login {
      
  display:none;
}
header .user-image {
  width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}

.cards-grids{
  display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:5rem;
    padding: 100px 0px;
    margin-top: -90px;
  }
  .cards-gridss{
    display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 2.95rem;
      padding: 1rem 57px;
      scrollbar-width: none;
     
    }
    
    .cardss{
      position:relative;
      height:300px;                 /* a little taller like the design   */
      border-radius:14px;
      overflow:hidden;
      background:#333 center/cover; /* acts as fallback colour            */
      box-shadow:0 6px 10px rgba(0,0,0,.12);
      flex: 0 0 285px;
    }
    .cardss-pc-view{
      display: none;
      
    }

  .cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:3rem;
    padding: 100px 200px;
    margin-top: -90px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 60px;
    height: 60px;
    font-size: 100px;
    background-color: #fff;
    color: #4b2525;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 0;
    transition: opacity .25s ease;
    font-family: 'Montserrat';
  }

  
  
  .slider-btn.left {
    left: 0px;
    top: 59%;
transform: translateY(-50%);
background: transparent;
  }
  
  .slider-btn.right {
    right: 24px;
    top: 59%;
transform: translateY(-50%);
background: transparent;
  }
  .slider-btn:hover {
    color: #7D5B59; /* darker brown */
  }

.menu-icon {
  font-size: 2rem;
  color: #5a2d2d;
  display: block;
  cursor: pointer;
  
}

header .logo {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat';
}

/*header nav {
  display: none;  Hide full nav on mobile 
}*/

header .btn-login {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-size: 16px;
  padding: 8px 20px;
  display:none;
  font-family: 'Montserrat';
}

header .phone-login{
  position: absolute;
    right: 1.2rem;
    top: 1rem;
    font-size: 30px;
    display:block;
	color: var(--primary);
	display:block;
  font-family: 'Montserrat';
  }

  

  /* Make summary cards stack */
   .summary-cards {
    display: flex;
    flex-direction: row; /* force horizontal */
    justify-content: center;
    align-items: stretch;
    gap: 9px;
    flex-wrap: nowrap;
  }

  .summary-cards .summary-card {
    flex: 0 0 45%; /* 45% width for each card */
    margin: 0;
  }

 
  .rsvp-table thead {
    display: none;
  }
   .menu-icon {
    display: block;
  }

  .desktop-nav {
    display: none; /* hide desktop nav on phone */
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: -64px;
    left: 0;
    width: 250px;
    /*height: 100vh;*/
    background-color: #f5eae6;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
    padding-top: 4rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav ul li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #d9bfbf;
  }

  .mobile-nav.show {
    transform: translateX(0);
  }
  
  .mobile-nav .close-btn {
    font-size: 4rem;
  text-align: left;
  padding: 0.1rem 1.5rem 0.5rem 1.5rem;
  cursor: pointer;
  color: #5a2d2d;
  margin-top:-4px;
  font-family: 'Montserrat';
}


nav ul li a {
  font-size: 18px;
  font-family: 'Montserrat';
}



  .rsvp-table tbody td {
    display: none; /* Hide all by default in mobile */
  }

  .rsvp-table tbody td.name-mobile,
  .rsvp-table tbody td.status-mobile,
  .rsvp-table tbody td.options-mobile {
    display: inline-block;
    flex: 1;
    padding: 1rem;
    text-align: center;
  }

  .rsvp-table tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f9ee;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .rsvp-table td.name-mobile {
    text-align: left;
    font-weight: bold;
    color: #333;
  }

  .rsvp-table td.status-mobile {
    color: green;
	font-weight: bold;
  }

  .rsvp-table td.options-mobile {
    text-align: right;
    color: #999;
  }
  .rsvp-table {
    display: none;
  }

  /* Show mobile row layout */
  .rsvp-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .rsvp-name {
    font-weight: 600;
    color: #FFF1F0;
  }
   .new-collection,
  .explore-designs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    margin-top: 165px;
  }

  .card { /* if each design is inside a .card class */
    width: 100%;
    max-width: 350px;
  }

  .slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    max-width: 1110px; /* Enough for 4 cards ~280px each + gaps */
    margin: 0 auto;
    
  }
  
  .design-card {
    width: 100%;
    max-width: 350px;
  }

  .design-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .viteup-footer {
    background-color: #F7EDEB;
    padding: 2.2rem;
    font-family: "Poppins", sans-serif;
    color: #333;
	display: block;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 7rem;
  }

  .footer-left h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-family:Montserrat;
    font-weight: bold;
  }

  .footer-left address,
  .footer-left p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
    margin-bottom:25px;
    font-family:Montserrat;
    font-weight: bold;
  }

  .footer-socials {
    margin-top: 1rem;
    font-size: 20px;
    display: flex;
    gap: 1rem;
  }

  .footer-right {
    display: flex
;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        border-radius: 15px;
        border-color: #EDE2DE;
        background-color: #EDE2DE;
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: -15rem;
        padding-top: 2rem;
        padding-bottom: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;

  }

  .footer-line{
    width:461px;
    border-radius: 15px;
    background-color: #1912124D;
    margin-left: -36px;
    height:1px;
    margin-bottom: -116px;
    margin-top: -81px;
  }

  .footer-language select {
    padding: 0.4rem;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  .footer-links {
    font-size: 1rem;
    display: flex
;
    gap: 0.5rem;
    align-items: center;
	
  }

  .footer-links a {
    color: #333;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .copyright {
    font-size: 1rem;
    color: #666;
  }
  
  viteup-footer-pc{
  display:none;
  }
  
  .footer-container-pc {
  display:none;
}

.footer-left-pc {
  display:none;
}

.footer-left-pc h3 {
  display:none;
}

.footer-left-pc address,
.footer-left-pc p {
  display:none;
}

.footer-socials-pc {
 display:none;
}

.footer-right-pc {
  display:none;
}

.footer-links-pc {
 display:none;
}

.footer-links-pc a {
 display:none;
}

.footer-links-pc a:hover {
 display:none;
}

.copyright-pc {
  display:none;
}

.tabs {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tabss {
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tabss-button {
  padding: 0.6rem 2.1rem;
  border-radius: 20px;
  background: #ffffff00;
  font-weight: bold;
  cursor: pointer;
  border-color: #7d5b59;
  border-width: thin;
  font-family: Montserrat;
  font-weight: bold;
  font-size: 15px;
}

.tabss-button.active {
  background: #7D5B59;
  color: white;
}

.step-circle {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 38px;
border-radius: 50%;
background-color: var(--primary);
color: white;
font-weight: bold;
font-size: 1rem;
margin-right:39px;
}

.tutorial-card h4 {
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inter;
}

.form-group textarea {
 
  top: 0.5rem;
  left: 0.8rem;
  min-height: 150px;
  resize: vertical;
   background: #FBF7F6;
   padding-top: 2rem;
   border: 1px solid #7D5B59;
   border-radius: 8px;
   width: 100%;
}

.form-group textarea:hover {
  border-color: #5a2d2d;
}
.form-group textarea:focus {
  border-color: #5a2d2d;
}
.form-group input:not(:placeholder-shown) + label {
  top: 0;
  left: 0.8rem;
  transform: translateY(-50%) scale(0.8);
  color: #5a2d2d;
  background: #FBF7F6;
}
input, textarea{
  width:100%;
  padding:.7rem 1rem;
  font-size:.9rem;
  border:1px solid #d0c6c6;
  border-radius:4px;
  background:#fff;
}
textarea{resize:vertical;min-height:140px}
.btn-submit{
  align-self:center;
  background:var(--primary);
  color:#fff;
  border:none;
  padding:13px 30px;
  font-size:.85rem;
  border-radius:36px;
  font-weight:700;
  cursor:pointer;
  transition:background .2s;
  margin-left: 155px;
}
.btn-submit:hover{background:#4b2525}

.contact-item{
  display:flex;
  align-items:center;
  gap:0rem;
  font-size:12px;
  color:var(--text-dark);
}

.contact-info{
  margin:3rem auto 2.5rem;
  max-width:680px;
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:0rem;
}

.hero-contact h1{
  font-size:30px;
  letter-spacing:2px;
  font-weight:700;
  color:#191212;
  margin-top: 70px;
  font-family:Montserrat;
}


}

/*========= DIGITAL CARDS PAGE CSS===========*/

@media (max-width: 390px) {

  .hero-content {
    margin-left: 16px;
        margin-right: 16px;
        margin-top: -100px;
  }
 
  .account-content {
    flex-grow: 1;
    padding-left: 15px;
  }
  .delete-label {
    padding: 15px 44px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #3e1f1f;
    border: 1px solid #3e1f1f;
    background-color: transparent;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    
  }
  

  .user-menu-item{
    width: 100%;
    display: flex
;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-family: Montserrat, system-ui, sans-serif;
    font-size: 15px;
    color: #3d2a22;
    text-align: left;
  }

  .user-menu-item svg {
    width: 19px;
    fill: currentColor; flex-shrink: 0;
  }

  .user-menu {
    position: absolute;
    top: 40px;       /* JS will set exact top/right when opened */
    right: 8px;
    min-width: 220px;
    background: #fff;
    border: 1px solid #EDE2DE;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 6px;
    z-index: 50;
  }

  .primary-btn{
    background-color: #7D5B59;
    color: white;
    padding: 15px 75px !important;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    width: fit-content;
    font-size: 20px;
    font-family: Montserrat;
    margin-left: 0px;
    font-weight: bold;
  }

  .cards-gridss{
    display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 1.5rem;
      padding: 1rem 30px;
      scrollbar-width: none;
     
    }
  }

 
  
@media (max-width: 375px) {

  .hero-content {
    margin-left: 16px; /* ✅ Make this smaller */
    margin-right: 16px; /* ✅ Add this to center properly */
    margin-top: -155px;
  }

  .cards-gridss{
    display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 2rem;
      padding: 1rem 20px;
      scrollbar-width: none;
     
    }

  .tabs {
 margin: 2rem auto;
 display: flex;
 justify-content: center;
 gap: 1rem;
}

.tab-button {
 padding: 0.6rem 1.5rem;
 border-radius: 10px;
 background: #ffffff00;
 font-weight: bold;
 cursor: pointer;
 border-color: #7d5b59;
 border-width: thin;
 font-family: Montserrat;
 font-weight: bold;
 font-size: 15px;
}

.tab-button.active {
 background: #7D5B59;
 color: white;
}

.step-circle {
display: inline-flex;
justify-content: center;
align-items: center;
width: 40px;
height: 38px;
border-radius: 50%;
background-color: var(--primary);
color: white;
font-weight: bold;
font-size: 1rem;
margin-right:28px;
}

.tutorial-card h4 {
 font-size: 13px;
 font-weight: 400;
 display: flex;
 align-items: center;
 gap: 0.5rem;
 font-family: inter;
}
/* Choose one place to define it */
#collectionSlider { --card-unit-mobile: 268px; }
/* or globally: :root { --card-unit-mobile: 268px; } */
@media (hover: none), (pointer: coarse) {
  .slider-btn { 
    opacity: 1 !important;  /* force visible on touch devices */
  }
}





}






/* This one is for the payment css and also for button to not appear in the mobile phone and als gradient light*/
/* … your existing CSS from the static version … */
   
.features-title {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7D5B59;
  margin: 1rem 0 0.5rem;
  text-align: left;
}

.features-sub {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #BBA8A7;
  margin: -4px 0 0.8rem; /* tighten spacing */
  text-align: left;
}

.Most-Popular {
  border-radius: 20px;
  padding: 6px 25px;
  background: #EDE2DE;
  color: #7D5B59;
  font-family: Montserrat;
  font-weight: 700;
  border: none; /* your border wasn't styled properly */
  font-size: 12px;
  position: relative;
  top: -5px; /* move it up a bit */
}

     /* ======================================
       Payment
    ====================================== */
    
    /* ===== Payment Modal (Vi-Up) ===== */
:root{
  --viup-bg:#FBF7F6;
  --viup-card:#FFF;
  --viup-ink:#2E2A2A;
  --viup-muted:#BBA8A7;
  --viup-accent:#8C6460; /* button color close to your palette */
  --viup-right:#EDE2DE;  /* beige right column */
  --viup-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.viup-modal{position:fixed;inset:0;display:none;z-index:9999;}
.viup-modal[aria-hidden="false"]{display:block;}
.viup-modal__backdrop{
  position:absolute;inset:0;background:rgba(0,0,0,.45);backdrop-filter:blur(2px);
}
.viup-modal__panel{
  position:relative;max-width:1014px;width:1014vw;margin:10vh auto;background:var(--viup-card);
  border-radius:16px;box-shadow:var(--viup-shadow);overflow:hidden;
  font-family:Montserrat, system-ui, sans-serif;
}
/* ni untuk sizing x/close button*/
.viup-modal__close{
  position:absolute;right:30px;top:20px;border:0;background:#0000;font-size:38px;
  line-height:1;cursor:pointer;color:#6f5c5a;
}
.viup-modal__split{display:grid;grid-template-columns:1fr 1fr;min-height:723px;}
.viup-modal__left{padding:28px 28px 24px 28px;background:#FBF7F6;}
.viup-modal__right{padding:28px;background:var(--viup-right);}

.viup-modal__title{
  margin:20px 0 14px 0;font-size:28px;font-weight:700;color:#2b2323 ;font-family:Montserrat;
}



/* radios */
.viup-form{display:flex;flex-direction:column;gap:14px;margin-top:8px;}
.viup-radio{display:block;border-radius:10px;padding:12px 14px;cursor:pointer;}
.viup-radio input{appearance:none;inline-size:16px;block-size:16px;border:2px solid #cbb8b6;border-radius:50%; width: 20px; height: 32px;
  margin-right:10px;vertical-align:-3px;display:inline-block;position:relative;}
.viup-radio input:checked{border-color:var(--viup-accent);}
.viup-radio input:checked::after{content:"";position:absolute;inset:3px;border-radius:50%;background:var(--viup-accent);}
.viup-radio__label{display:flex;align-items:center;gap:10px;justify-content:flex-start; font-family: Montserrat;}
.viup-radio__name{font-weight:600;color:#2b2323;font-size:22px;font-family: Montserrat;}
.viup-radio__price{color:#AEAEAE;font-weight:600;font-size:16px; font-family: Montserrat; margin-left: 50px;}

.viup-badge{
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.2px;
  background:#7D5B59; color:#fff; padding:4px 8px; border-radius:999px; margin-left:6px;
}

.viup-total{display:flex;justify-content:space-between;align-items:center;margin-top:272px;color:#9a8786;font-weight:600;}
.viup-btn-next{
  width:100%; margin-top:26px; border:0; border-radius:10px; padding:12px 16px; cursor:pointer;
  background:var(--viup-accent); color:#fff; font-weight:700; font-family: Montserrat;
}

/* steps */
.viup-steps{list-style:none;padding:0;margin:111px 0 0;display:flex;flex-direction:column;gap:74px;}
.viup-step{display:flex;gap:14px;align-items:flex-start;}
.viup-step__icon{
  inline-size:42px; block-size:42px; border-radius:50%; background:#fff; display:grid;place-items:center;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.viup-step__icon i{font-size:18px;color:#6c5957; }
.viup-step__title{font-weight:700;font-size:18px;color:#3a3030; font-family: Montserrat;}
.viup-step__sub{font-size:13px;color:#8e7b79;margin-top:2px;max-width:401px;line-height:1.35; font-family: Montserrat;}

.viup-step__icon {
  inline-size: 42px;
  block-size: 42px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  position: relative; /* important for line placement */
}

.viup-step__icon::after {
  content: "";
  position: absolute;
  top: 134%;
  left: 50%;
  width: 2px;
  height: 50px; /* same as your gap between steps */
  background: #7D5B59; /* match muted color */
  transform: translateX(-50%);
}

.viup-step:last-child .viup-step__icon::after {
  display: none; /* remove line after last step */
}

/*.viup-step__text{
  
}
*/

/* ===== Step 2: Payment Method ===== */
.viup-payment-step {
  display: none; /* hidden until Next is clicked */
  
}

.viup-back-btn {
  margin: 20px -34px 14px 0;
    font-size: 28px;
    font-weight: 700;
    color: #2b2323;
    background: #FBF7F6;
    border: 0px;
    margin-left: -144px;
    font-family: Montserrat;
}

.viup-payment-title {
  font-weight: 600;
  margin-bottom: 26px;
  color: var(--viup-ink);
  margin-top: 8px;
  margin-left: -267px;
  font-size: 20px;
  font-family: Montserrat;
}

.viup-payment-option {
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.viup-payment-total {
  margin-top: 204px;
  margin-bottom: 26px;
}



@media (max-width:680px){
  .viup-modal__split{grid-template-columns:1fr;}
  .viup-modal__right{display:none;} /* match the desktop-first design */
}
@media (max-width:430px){
  .viup-modal__split{grid-template-columns:1fr;}
  .viup-modal__right{display:none;} /* match the desktop-first design */

  .viup-modal__panel {
    position: relative;
    max-width: 380px;
    width: 1014vw;
    margin: 21vh auto;
    background: var(--viup-card);
    border-radius: 16px;
    box-shadow: var(--viup-shadow);
    overflow: hidden;
    font-family: Montserrat, system-ui, sans-serif;
    max-height: 662px;
  }
  .viup-total{display:flex;justify-content:space-between;align-items:center;margin-top:200px;color:#9a8786;font-weight:600;}
  .viup-modal__title {
    margin: 40px -129px 25px 0;
    font-size: 26px;
    font-weight: 700;
    color: #2b2323;
    font-family: Montserrat;
    margin-left: 33px;
}
.viup-payment-option {
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.viup-form {
    display: flex
;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
    margin-left: 0px;
}
.event-details h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: -5px;
  font-family: Montserrat;
  color: #191212;
}

.fa-sign-out:before{
font-size: 19px;
}

  

.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 2px;
  min-width: 255px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 10px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 1000;
  
}

.user-menu-item{
  width: 100%;
  display: flex
;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 15px;
  color: #3d2a22;
  text-align: left;
}

.user-menu-item svg {
  width: 19px;
  fill: currentColor; flex-shrink: 0;
}

.event-image {
  width: 100px;
  height: 100px;
  background-color: #7D5B56;
  flex-shrink: 0;
  margin-left: 20px;
}

.primary-btn{
  background-color: #7D5B59;
  color: white;
  padding: 15px 100px ;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 20px;
  width: fit-content;
  font-size: 20px;
  font-family: Montserrat;
  margin-left: 0px;
  font-weight: bold;
}

.viup-back-btn {
    margin: 20px -34px 14px 0;
    font-size: 26px;
    font-weight: 700;
    color: #2b2323;
    background: #FBF7F6;
    border: 0px;
    margin-left: -45px;
    font-family: Montserrat;
}

.viup-payment-title {
    font-weight: 600;
    margin-bottom: 26px;
    color: var(--viup-ink);
    margin-top: 68px;
    margin-left: -144px;
    font-size: 20px;
    font-family: Montserrat;
}

.delete-icon {
  color: #7D5B59;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 28px;
  display: none;
}
.options-icon {
  color: #7D5B59;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 30px;
  font-size: 28px;
  display: inline;
  
}

.slider-container {
 /* fade on LEFT and RIGHT edges */
 /*-webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;*/
    
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      
      max-width: 400px; /* Enough for 4 cards ~280px each + gaps */
      margin: 0 auto;
      
    
  }
  .slider-container .slider-btn {
    display: none !important;
}
.slider-btn.left {
  display: none !important;
    }
    
    .slider-btn.right {
      display: none !important;
    }
    .slider-btn:hover {
      display: none !important;
    }

    @media (max-width: 680px){
  .slider-container{
   /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;*/
  }
  .slider-container .slider-btn { display: none !important; }
}
}


/*This is for the notifications yeah kinda tired of writing this long ass things really*/

  /* --- Notifications --- */
  .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 69px; margin-left: -200px;}
  .notif-toggle {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: 0; border-radius: 999px; background: #f2e9e7; cursor: pointer;
  }
  .notif-toggle:hover { background:#eadfdd; }
  .notif-badge {
    position: absolute; top: -4px; right: -4px; min-width: 18px; height:18px; padding:0 5px;
    border-radius: 10px; font: 700 11px/18px Montserrat, sans-serif; color:#fff; background:#8C6460; text-align:center;
  }
  .notif-panel {
    position: absolute; right: 0; top: 48px; width: 560px; max-width: calc(100vw - 24px);
    background: #fff; border: 1px solid #e7dede; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.08);
    display: none; z-index: 9999; overflow: hidden;
  }
  .notif-panel.open { display: block; }
  
  .notif-head { display:flex; align-items:center; justify-content:space-between; padding:16px 18px; border-bottom:1px solid #f0e8e7; }
  .notif-head h3 { margin:0; font: 800 22px/1 Montserrat, sans-serif; color:#2b1f1e; }
  .notif-mark { background:none; border:0; color:#8C6460; font:600 13px/1.2 Montserrat, sans-serif; cursor:pointer; }
  
  .notif-tabs { display:flex; gap:18px; padding:10px 18px; border-bottom:1px solid #f0e8e7; }
  .notif-tabs .tab {
    background:none; border:0; padding:8px 0; font:700 14px/1 Montserrat,sans-serif; color:#6c5452; cursor:pointer;
    position:relative;
  }
  .notif-tabs .tab.active { color:#2b1f1e; }
  .notif-tabs .tab.active::after {
    content:""; position:absolute; left:0; right:0; bottom:-11px; height:3px; background:#8C6460; border-radius:3px;
  }
  .pill { display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 6px;
    margin-left:6px; border-radius:10px; font:700 11px/18px Montserrat; background:#eee3e1; color:#6c5452; }
  
  .notif-list { list-style:none; margin:0; padding:0; max-height: 420px; overflow:auto; }
  .notif-item { display:flex; gap:14px; padding:16px 18px; border-top:1px solid #f7f1f0; }
  .notif-item.unread { background:#fcf9f8; }
  .notif-avatar {
    width:38px; height:38px; border-radius:50%; background:#e8dbd9; display:inline-flex; align-items:center; justify-content:center;
    font:700 14px/1 Montserrat; color:#523c39;
  }
  .notif-body { flex:1; }
  .notif-line { margin:0; color:#2b1f1e; font:600 14px/1.4 Roboto, system-ui, sans-serif; }
  .notif-name { font-weight:800; }
  .notif-meta { margin-top:6px; color:#8a7573; font:500 12px/1 Montserrat; display:flex; gap:8px; align-items:center; }
  .notif-meta .dot { width:4px; height:4px; background:#c7b3b1; border-radius:50%; display:inline-block; }


  @media (max-width: 1440px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: -61px; margin-left: -200px;}
  }

  @media(max-width: 1280px){
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 15px;
      background: #EDE2DE;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      
      top: 0;
      z-index: 100;
    }

    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: -50px; margin-left: -200px;}
  }

  @media (max-width: 1024px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 48px; margin-left: -200px;}
  }
  @media (max-width: 640px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 48px; margin-left: -200px;}
  }
  
 


  @media (max-width: 390px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 28px; margin-left: -200px;}
    .slider-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      
      max-width: 350px; /* Enough for 4 cards ~280px each + gaps */
      margin: 0 auto;
      
    }
  }
  @media (max-width: 412px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 38px; margin-left: -200px;}
  }
  
  @media (max-width: 360px) {
    .notif-panel { width: 92vw; right: -46px; }
    .notif-wrap { position: relative; margin-right: -322px; top: -5px;left: 15px; margin-left: -200px;}

    .cards-gridss{
      display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 2rem;
        padding: 1rem 20px;
        scrollbar-width: none;
       
      }

      .viup-modal__panel {
        position: relative;
        max-width: 356px;
        width: 1014vw;
        margin: 10vh auto;
        background: var(--viup-card);
        border-radius: 16px;
        box-shadow: var(--viup-shadow);
        overflow: hidden;
        font-family: Montserrat, system-ui, sans-serif;
        max-height: 662px;
      }

      .viup-total{display:flex;justify-content:space-between;align-items:center;margin-top:170px;color:#9a8786;font-weight:600;}

      .forgot{
        left:-25px;
      }

      .package-cards .prices {
        font-size:40px;
        font-weight:700;
        color:#111;
        margin-bottom:.35rem;
        font-family: Montserrat;
        margin-left: -123px;
      }
  }

  