body {
     user-select: none;
     min-height: 100vh;
     position: relative;
}

header, .header {
    color: white;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    border-bottom: 1px solid #e00614;
}

main.content {
    background: #f1f1f1;
    min-height: calc(100vh - var(--footer-height));
    padding-bottom: var(--footer-height);
}

footer.footer {
    bottom: 0;
}

.selcell {
    cursor: pointer;
    user-select: none;
}
.selcell .ohold {
    background: white;
    max-height: 160px;
    text-align: center;
    margin-top: 16px
}

.selcell .ihold {
    background: var(--primary);
    width: 100%;
    height: 60px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
}
/* Slightly darker red */
.selcell .ihold:hover{
    background-color: rgb(180, 0, 20);
}

.ohold img {
    max-height: 160px;
    margin-left: auto;
    margin-right: auto;
}

.ohold:hover {
    background: var(--primary);
}

.ohold:hover .w {
    display: block !important;
}

.ohold:hover .r {
    display: none !important;
}

.ihold img{
    display:none;
}

.csec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 16px;
    justify-content: center;
      }

.csec div {
    max-width: 220px; /* Maximum width for each box */
    margin: 0 auto; /* Center the divs within their column */
    background: #f4f4f4;
    padding: 16px;
    border: 1px solid #ddd;
}

      @media (max-width: 600px) {
        .csec {
          grid-template-columns: 1fr; /* Collapse to 1 column on small screens */
        }
    }

.bbtn {
    color: white; 
    padding: 16px; 
    background: var(--primary);
    border-radius: 0px !important;
}

.pack-section {
    background-color: var(--primary-background);
}

.plan-cards {
    margin-top: 2rem;
}

.plan-card {
    background: #ffffff;
    max-width: 22rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.plan-title {
    color: #555555;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.plan-subtitle {
    color: #6b6b6b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.plan-cta-wrapper {
    width: 100%;
}

.plan-cta {
    background-color: #d9001b;
    color: #ffffff;
    min-width: 10rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    display: inline-block;
    text-align: center;
}

.plan-cta:hover {
    color: #ffffff;
    background-color: #c10018;
}

.plan-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4a4a4a;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 6px 10px;
}

.quantity-controls input {
    width: 70px;
    border: 0;
    background: transparent;
    text-align: center;
    outline: none;
    box-shadow: none;
    color: #4a4a4a;
}

.quantity-controls span svg {
    color: #555555;
}

.ihold span {
    font-size: 1.2rem;
}

.top-section {
    min-height: 0px;
}

@media (max-width: 767.98px) {
    .plan-card {
        padding: 24px 20px;
    }

    .plan-cta {
        width: 100%;
    }

    .ihold span {
        font-size: 1.2rem;
    }
}

@media (min-width: 767.99px) {
    .ihold span {
        font-size: 0.8rem;
    }
}

@media (min-width: 980px) {
    .ihold span {
        font-size: 1.2rem;
    }
}
