.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}

/* 👇 Make image behave like a background */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 👇 Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;

}

/* 👇 Text on top */
.hero-text {
  position: absolute;
  top: 60%;
  left: 40%;   /* 👈 shift left */
  transform: translate(-40%, -50%);
}

.hero-text {
  transform: translateY(60px);
}

@media (max-width: 768px) {
  .hero-text {
    transform: translateY(30px);
  }
}
     
     
     
     
     
     /* Remove arrows in Chrome, Safari, Edge */
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
        }

        /* Remove arrows in Firefox */
        input[type="number"] {
        -moz-appearance: textfield;
        }
     
     
        /* all blocks equal height + center content */
        .row > div {
        display: flex;
        justify-content: center;   /* 👈 horizontal center */
        align-items: center;       /* 👈 vertical center (optional but nice) */
        }

        bag-block {
        flex: 0 0 auto;  /* prevent stretching */
        }
        


        /* all blocks equal height */  

        input[type="number"] {
        text-align: center;
        font-size: 16px;
        width: 50px;
            }
        
        .wrapper {
        width: 210px;
        border: 2px solid #ccc;
        background: white;
        padding: 10px;
        font-family: Arial, sans-serif;
        }

        .image-box {
        

        /* 👇 key */
        padding: 0;
        width: 100%;
        height: 120px; /* or whatever height you want */
        overflow: hidden;
        }

        img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 🔥 fills entire box */
        display: block;
        }

        .controls {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          align-items: center;
        }

        button {
          background: #222;
          color: white;
          border: none;
          height: 50px;
          width:50px;
          font-size: 28px;
          cursor: pointer;
        }

        button:active {
          background: #000;
        }

        input {
          height: 50px;
          border: none;
          text-align: center;
          font-size: 22px;
          background: white;
          width:100%;
        }

        .total {
          text-align: center;
          margin-top: 8px;
          font-weight: bold;
        }












































.hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* desktop: 50% height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Image styling */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* shows full image (no cropping) */
    background-color: black; /* fills empty space if image doesn't cover */
}

/* Centered text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Optional overlay for readability */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;

}

/* 📱 Mobile view */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh; /* full height on mobile */
    }
}

            select {
                width: 100%;
                padding: 7px;
            }

            .form-select.colour.black {
                background-color: #000;
                color: #fff;
            }

            .form-select.colour.green {
                background-color: #198754;
                color: #fff;
            }

            .form-select.colour.blue {
                background-color: #0d6efd;
                color: #fff;
            }

            .form-select.colour.clear {
                background-color: #f8f9fa;
                color: #000;
            }