/* Main Layout Structure */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content Area */
main {
    flex: 1;
}

/* Container for main content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page-specific main content */
.page-main {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin: 20px auto;
    padding: 30px;
    max-width: 1000px;
}

.center-wrapper {
    margin-top: 65px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}
  
#category, #customize, #app {
    text-align: center;
    border: solid #333 1px;
    border-radius: 5px;
    padding: 10px;

}
  
#category a, #customize a, #app a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
}

.hero-video {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 0 auto;
}

.overall-rating {
    display: flex;
    gap: 16px;
    margin-top: 8px;
  }
  
  .overall-rating label {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
  }
  
  .overall-rating input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #333;
    margin-bottom: 4px;
    transition: background-color 0.3s ease;
  }
  
  .overall-rating input[type="radio"]:checked {
    background-color: #333; /* OFFLane orange */
    border-color: #000;
  }

.bag-holder, .offers-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-right: 4px;
}

.bag-holder, .offers-holder p {
    color: #000;
}

#custom {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

#custom a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
}