.hero-section{
    margin-top: 120px;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* HERO TEXT */
.hero-content {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 2;
  text-align: right;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    right: 24px;
    bottom: 40px;
  }

  .hero-content h1 {
    font-size: 26px;
  }
}


/* newly added css */
.newly-launched {
  background: #ffffff;
}

/* Card */
.launch-card {
  background: #f8f8f8;
  border-radius: 16px;
  /* padding: 16px; */
  display: flex;                 /* KEY */
  align-items: center;           /* vertical center */
  gap: 16px;                     /* space between image & text */
  transition: transform 0.3s ease;
}

/* Image wrapper */
.img-wrap {
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  width: 240px;
  height: 160px;
}

/* Image */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Text */
.launch-title {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2E2E2E;
  text-align: center;
}

/* Hover effects */
.launch-card:hover img {
  transform: scale(1.08);
}
.newly-launch-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;      /* Regular */
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0;
  
  color: #000000;
}

@media (max-width: 768px) {

  .launch-card {
    position: relative;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  .img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 14px;
  }
}


   /* Hide elements utility */
        .hidden-view {
            display: none !important;
        }

        /* Loading Spinner */
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3b82f6;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Page styling required by StPageFlip */
        .page {
            background-color: white;
            border: solid 1px #e5e7eb;
            overflow: hidden;
        }
        
        .page.--left {
            border-right: 0;
            box-shadow: inset -7px 0 30px -7px rgba(0, 0, 0, 0.1);
        }
        
        .page.--right {
            border-left: 0;
            box-shadow: inset 7px 0 30px -7px rgba(0, 0, 0, 0.1);
        }

        .page.hard {
            background-color: #1e293b;
            border: solid 1px #0f172a;
        }

        .page.hard .page-content {
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 10px;
            text-align: center;
        }
        @media (min-width: 768px) {
            .page.hard .page-content {
                padding: 20px;
            }
        }

        .page-content {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .page-content img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ensures the whole page is visible */
            pointer-events: none;
            user-select: none;
        }

        /* Smooth zoom transition */
        .flipbook-container {
            transition: transform 0.3s ease-in-out;
            transform-origin: center center;
        }

        /* --- Main Page Layout Styles --- */
        .catalogue-container {
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .catalogue-heading {
            text-align: center;
        }
        .catalogue-heading h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }
        .catalogue-heading p {
            color: #6b7280;
            font-size: 1.1rem;
        }
        .catalogue-card1 {
            background: white;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }
        .catalogue-book {
            height: 600px; /* Fixed height for reliable flipbook rendering */
            background: #f1f5f9;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
        }
        .catalogue-book img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .catalogue-form {
            flex: none; /* Let it size naturally */
            padding: 24px 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            overflow-y: auto; /* Scroll the form if screen is too short */
            background-color: white;
        }
        @media (min-width: 600px) {
            .catalogue-form {
                grid-template-columns: 1fr 1fr; /* 2 columns for wider screens */
            }
            .catalogue-form .full-width {
                grid-column: span 2;
            }
        }
        .catalogue-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .catalogue-form input:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .download-btn1 {
           font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
        }
        .download-btn1:hover {
           background: #9c3e13;
  color: #fff;
        }
        .growth-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  background: #b34716;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  margin-top: 25px;
  outline: 1px solid #AF3C0E;
    outline-offset: 2px;
    box-shadow: 0px 4px 4px 0px #00000014;
}

.growth-btn:hover {
  background: #9c3e13;
  color: #fff;
}


        .flipbook-toolbar {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #e5e7eb;
    z-index: 30;
    width: max-content;
    max-width: 95%;
    color: #374151;
}

.toolbar-btn {
    border: none;
    background: transparent;
    padding: 4px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar-btn svg {
    width: 20px;
    height: 20px;
}

.toolbar-btn:hover {
    color: #2563eb;
}

.toolbar-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-count {
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
    white-space: nowrap;
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: #d1d5db;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}




.verpack-footer {
  background: linear-gradient(182.44deg, rgba(243, 232, 216, 0.8) -111.63%, rgba(76, 34, 2, 0.8) 118.19%);
  font-size: 16px;
     font-family: 'Lora', serif;
     font-weight: 400;
}

.footer-tagline {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-info{
   color: #fff;
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 400; 
line-height: 24px;
}
.footer-info i {
   font-family: 'Lora', serif;
  font-size: 14px;
  margin-right: 12px;
  margin-top: 3px;
  font-weight: 400;
}
.footer-info img {
  font-size: 18px;
  margin-right: 12px;
  margin-top: 3px;
  align-items: center;
  align-self: center;
}

.footer-title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 18px;
   color: #fff;
   font-family: 'Lora', serif;
font-style: normal;
line-height: 24px;
}

.footer-links li {
  margin-bottom: 8px;
 font-family: 'Lora', serif;
  font-size: 16px;
font-style: normal;
}

.footer-links a {
   font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-icons a {
  display: inline-flex;
  justify-content: left;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #8a6a52;
  margin-left: 0px;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #f1f1f1;
}

.footer-divider {
  border-color: rgba(255,255,255,0.3);
}
/* ================= FOOTER – SMALL DEVICES ================= */
@media (max-width: 768px) {

  .verpack-footer {
    padding: 24px 16px;
    font-size: 14px;
    text-align: center;
  }

  .footer-tagline {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

 .footer-info {
    font-size: 13px;
    line-height: 22px;
    text-align: center;
  }

  .footer-info li {
    justify-content: center;   /* center icon + text horizontally */
    align-items: center;       /* center vertically */
    text-align: center;
  }

  .footer-info li {
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .footer-info i,
  .footer-info img {
    margin-right: 10px;
    margin-top: 4px;
  }

  .footer-links li,
  .footer-links a {
    font-size: 13px;
  }

  .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
     justify-content: center
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 16px;
    margin-right: 0;
    justify-content: center;
  }

  .footer-divider {
    margin: 20px 0;
  }

  

}

@media (max-width: 576px) {
  .footer-info li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* THIS IS THE KEY FIX */
  .footer-info li span {
    display: block;        /* make it block */
    width: 100%;           /* take full width */
    text-align: center;    /* now center works */
  }

  /* for email & phone text (not wrapped in span) */
  .footer-info li {
    text-align: center;
  }
}

.navbar-custom {
    position: fixed;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 220px);
    padding: 12px 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(198, 165, 119, 0.12) 0%, rgba(198, 165, 119, 0.4) 100%);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, .35);
    transition: .4s ease;
    z-index: 1000;
}

@media (max-width: 768px) {
  .navbar-custom {
    box-sizing: border-box;
    position: fixed;
    top: 12px;
    left: 8px;
    width: calc(100% - 80px);
    padding: 6px 16px;
    border-radius: 24px;
    transform: none;
  }
}

.navbar-custom.scrolled{
    background: linear-gradient(180deg, rgba(198, 165, 119, 0.12) 0%, rgba(198, 165, 119, 0.4) 100%);
    backdrop-filter: blur(100px);
    border:none;

      /* background: linear-gradient(
    180deg,
    #f7f1e8 0%,
    #efe5d6 100%
  );
  border-radius: 999px;
  padding: 16px 32px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6); */
}

.navbar-brand img{
    height:56px;
}

/* ================= LINKS ================= */
.nav-link {
    color:#262222!important;
    font-weight:500;
    position:relative;
     font-family: 'Manrope', sans-serif;
  font-weight: 400;      /* Regular */
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .nav-link {
    color:#000!important;
      font-size: 16px;
  }
  .nav-link:hover{
    transform: scale(.95) !important;
  }
 
}

.nav-link:hover{
    transform:scale(1.1);
}

.nav-link.active::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:100%;
    height:2px;
    background:#262222;
}

.navbar-custom.scrolled .nav-link{
    color:#262222!important;
}

.navbar-custom.scrolled .nav-link.active::after{
    background:#262222;
}

/* ================= DESKTOP MEGA MENU ================= */
@media (min-width:992px){

    /* IMPORTANT FIX */
    .nav-item.product{
        position:static;
    }

    .mega-menu{
        position:absolute;
        top:calc(100% + 18px);
        left:50%;
        transform: translateX(-50%) translateY(-10px);
           /* 🔥 CRITICAL FIX */
        width: 90vw;              /* viewport width */
        max-width: 1400px;        /* optional cap */
        min-width: 1100px;  

         background: linear-gradient(116.79deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.88) 99.45%),
linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(200px);
        border-radius:28px;
        padding:28px 40px;

        opacity:0;
        visibility:hidden;
        transition:.35s ease;
        box-shadow:0 30px 60px rgba(0,0,0,.25);
        z-index:999;
    }

    .nav-item.product:hover .mega-menu{
        opacity:1;
        visibility:visible;
        transform:translate(-50%,0);
    }

    .mega-item{
    display: block;          /* IMPORTANT */
  width: 100%;
  padding: 16px 10px;
  border-radius: 12px;
  text-align: center;
  transition: 0.2s ease;
    }

    .mega-item i{
       display: block;
  padding: 16px 10px;
  border-radius: 12px;
  background: #fff;
  transition: all 0.25s ease;
  height: 100%;
  font-family: 'Lora', serif;
  font-weight: 400;     /* Regular */
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
    }
    .category-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
}
.category-title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  font-family: 'Manrope', sans-serif;
  margin-top: 20px;
}


  
    .mega-item:hover img {
  /* filter: invert(24%) sepia(87%) saturate(2285%) hue-rotate(3deg) brightness(93%) contrast(97%); */
    filter: brightness(0) saturate(100%) invert(24%) sepia(87%) saturate(2285%) hue-rotate(3deg) brightness(93%) contrast(97%);
}
}

@media (min-width: 992px) {

    .mega-menu .mega-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .mega-menu .mega-item {
        flex: 1 1 0;
        text-align: center;
        min-width: 120px;
    }
}

/* ================= MOBILE ================= */
@media (max-width:991px){
    .navbar-custom{
        width:calc(100% - 20px);
        padding:12px 20px;
    }
    .mega-menu{
        display:none!important;
    }
}

.offcanvas{
    background:linear-gradient(180deg,#f3ede4,#e8dcc8);
}

#categoryGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (min-width: 576px) {
  #categoryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  #categoryGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  #categoryGrid {
    grid-template-columns: repeat(6, 1fr);
  }
}


.product-toggle-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* When Bootstrap collapse is open */
button[aria-expanded="true"] .product-toggle-icon {
    transform: rotate(180deg);
}

/* When closed */
button[aria-expanded="false"] .product-toggle-icon {
    transform: rotate(0deg);
}

#mobileProduct.collapsing {
    transition: height 0.35s ease;
}