/* ======================================
       GLOBAL VARIABLES & RESET
    ====================================== */




    
    :root {
      --bg:        #FBF7F6;
      --primary:   #5a2d2d;
      --secondary: #7d6f6f;
      --text-dark: #333333;
      --card-bg:   #ffffff;
      --radius:    25px;
      --gap:       1.5rem;
      --font:      'Helvetica Neue', Arial, sans-serif;
    }

    * {
      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 50px;
      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; }

    /* 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; }
    
    /* 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;
    }
    
    /* 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;
    }
    
    /* 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: 18px; height: 18px;
      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;
    }
	.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;
}
.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: 0.75rem;
      line-height: 1.2;
    }
    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    .btn-hero {
      background: var(--primary);
      color: #fff;
      padding: 0.75rem 1.75rem;
      border: none;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
    }
    .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;
    }
    .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: 1140px; /* Enough for 4 cards ~280px each + gaps */
      margin: 0 auto;
    }
    
    .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: 300px;
      top: 50%;
  transform: translateY(-50%);
    }
    
    .slider-btn.right {
      right: 320px;
      top: 50%;
  transform: translateY(-50%);
    }
    .slider-btn:hover {
      color: #8B4513; /* 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 247px;
    }
    .cardss-pc-view{
      display: flex;
      flex: nowrap;
    }

    .cards-gridss{
      display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 2.5rem;
        padding: 1rem 71rem;
        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: 550px;
    }
	 .exp-image {
     flex: 1 1 300px;
      max-width: 500px;
    }
    .exp-text h3 {
      font-size: 36px;
      color: #000000;
      margin-bottom: 0.75rem;
    }
    .exp-text p {
      font-size: 20px;
      margin-bottom: 1.25rem;
      color: #000000;
    }
	.exp-text strong{
	color: #7D5B59;
	}
	
    .btn-exp {
      background:#7D5B59;
      color: #fff;
      padding-top:15px;
	  padding-bottom:15px;
	  padding-left:40px;
	  padding-right:40px;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
    }
    .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: 413px;
  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 {
      margin-top: 1.75rem;
      background: var(--primary);
      color: #fff;
      padding: 0.7rem 1.75rem;
      border: none;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s;
    }
    .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: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}

.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: #2d2d2d;
  border: none;
}

/* Preview button (transparent) */
.actions button:last-child {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.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%;
      border: 1px solid var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.8rem;
      color: var(--primary);
    }

    .pagination a.active {
      background: var(--primary);
      color: var(--text-light);
    }
    /* ======================================
       PACKAGES SECTION
    ====================================== */
    .packages-section {
      padding: 18rem 2rem;
      text-align: center;
      background: var(--card-bg);
    }
    .packages-section h2 {
      font-size: 2rem;
      margin-bottom: var(--gap);
      color: var(--primary);
    }
    .packages-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 68px;
    }
    .package-card {
      background: #FBF7F6;
      border: 1px solid #7D5B59;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      width: 360px;
	  height:724px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
	.package-cards {
       background: radial-gradient(
    circle,
    #FBF7F6 0%,
    #FBF7F6 30%,
    #F0E6E3 60%,
    #EDE2DE 100%
  );
  border: 1px solid #7D5B59;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 360px;
  height: 724px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .package-card h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 42px;
	  font-family:Montserrat;
    font-weight: 600;
    }
    .package-card .price {
      font-size: 68px;
      margin-bottom: 8px;
      font-weight: bold;
	  font-family:Montserrat;
    }
	
	 .package-cards h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 32.36px;
	  font-family:Montserrat;
    font-weight: 600;
    }
    .package-cards .price {
      font-size: 68px;
      margin-bottom: 8px;
      font-weight: bold;
	  font-family:Montserrat;
    }
    .features {
      text-align: center;
      margin-bottom: 1.5rem;
      list-style: none;
    }
    .features li {
      margin-bottom: 8px;
      font-size: 20px;
	  font-weight:700px;
	  font-family:Montserrat;
    }
    .btn-preview {
      background: var(--primary);
      color: #fff;
      padding: 0.6rem 0;
      border: none;
      border-radius: var(--radius);
      font-weight: bold;
      cursor: pointer;
      margin-top: auto;
      transition: background 0.2s;
    }
    .btn-preview:hover {
      background: #4b2525;
    }

    /* ======================================
       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;
  }

    /* ======================================
       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 {
        justify-content: center;
      }
    }
    @media (max-width: 500px) {
      header {
        flex-direction: column;
        gap: 1rem;
      }
      .collection-card, .design-thumb, .package-card,.package-cards {
        width: 90%;
      }
      .hero-content h1 {
        font-size: 2.25rem;
      }
	  .hero-content {
    margin-left: 16px; /* ✅ Make this smaller */
    margin-right: 16px; /* ✅ Add this to center properly */
  }
      .hero-content p {
        font-size: 1rem;
      }
    }
	.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.desktop-nav {
  display: flex;
}
.mobile-nav {
display:none;
}
splay: 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: 2rem;
  right: 5.3rem;
}

  .form-group:hover label {
      color: #7D5B59;
      font-weight: 1000;
  }

  .form-group input {
      width: 602px;
      padding: 1.2rem 1rem 0.4rem; /* Extra top padding for label */
      font-size: 1rem;
      border: 2px solid #ccc;
      border-radius: 8px;
      background: transparent;
      outline: none;
      transition: border-color 0.3s ease;
  }


  .form-group label {
      position: absolute;
      top: 50%;
      left: 1rem;
      transform: translateY(-50%);
      background: #FBF7F6; /* page background color */
      padding: 0 4px;
      color: #aaa;
      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;
  }
  
  .account-content {
    flex-grow: 1;
    padding-left: 250px;
  }

  .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: 20px;
    font-weight: bold;
    font-family: Montserrat;
  }
  
  .account-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
  }
  
  .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: 2rem;
  }
  
  .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;
  }
  
  .form-groups label {
    position: absolute;
    top: 12%;
    left: 1rem;
    transform: translateY(-50%);
    
    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;
  }
  
  .save-btn {
    background-color: #6b4a3e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    margin-top: 20px;
    width: fit-content;
    font-size: 17px;
    margin-bottom: 5rem;
    font-family: Montserrat;
  }
  
  .delete-container {
    border-top: 1px solid #d3cfcf;
    border-bottom: 1px solid #d3cfcf;
    padding: 20px 0;
    margin: 40px 0;
    background-color: #fdf9f8; /* Matches light background */
  }
  
  .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: 8px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    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;
  }


  .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;
  }

  .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;
  }
  
      .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);
}
.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;
}
textarea{resize:vertical;min-height:140px}
.btn-submit{
  align-self:flex-end;
  background:var(--primary);
  color:#fff;
  border:none;
  padding:13px 30px;
  font-size:.85rem;
  border-radius:36px;
  font-weight:700;
  cursor:pointer;
  transition:background .2s;
}
.btn-submit:hover{background:#4b2525}

.account-content > section { display: none; }
.account-content > section.active { display: block; }

.sidebar li.active {
  font-weight: 600;
  /* add any highlight you want, e.g.: */
  border-left: 3px solid #6b4a3a; padding-left: 10px; color: #3d2a22;
}
/* 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;
}
.back-link:hover{ text-decoration: underline; }

.crumb-link{ cursor:pointer; color:#6b4a3a; }
.crumb-link:hover{ text-decoration:underline; }


	
@media (max-width: 769px) {
	header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  position: relative;
  
}

  .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;
  
}

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: 6rem;
      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 261px;
    }
    .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;
  }

  
  
  .slider-btn.left {
    left: 0px;
    top: 59%;
transform: translateY(-50%);
  }
  
  .slider-btn.right {
    right: 24px;
    top: 59%;
transform: translateY(-50%);
  }
  .slider-btn:hover {
    color: #8B4513; /* 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;
}

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;
}

header .phone-login{
  position: absolute;
    right: 1.2rem;
    top: 1rem;
    font-size: 30px;
    display:block;
	color: var(--primary);
	display:block;
  }

  

  /* 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;
}


nav ul li a {
  font-size: 18px;
}



  .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;
  }

  .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: 1rem;
	border-radius: 15px;
    border-color:#EDE2DE;
    font-family:Montserrat;
    font-weight: bold;
	
	margin-left:-2rem;
	margin-right:-2rem;
	margin-bottom:-8rem;
	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: 14px;
    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: 14px;
    font-family: Montserrat;
    font-weight: bold;
  }
  
  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: 200px;
}
.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: 375px) {
  .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 */
  }
}
}
