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

header, .header {
    color: white;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

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

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

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;
}

.shop-landing {
    background: var(--primary-background);
    padding: clamp(3rem, 6vw, 6.5rem) clamp(1rem, 3vw, 3rem) clamp(4rem, 8vw, 8rem);
}

.shop-landing-container {
    max-width: 1740px;
    margin: 0 auto;
}

.shop-landing-title {
    margin: 0 0 clamp(3rem, 6vw, 6rem);
    color: var(--primary);
    font-size: clamp(2.4rem, 4.5vw, 4.8rem);
    line-height: 1.05;
    text-align: center;
}

.shop-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.75vw, 2rem);
}

.shop-option-card {
    min-width: 0;
    color: var(--primary);
    display: grid;
    grid-template-rows: minmax(3.5rem, auto) 14rem minmax(5.75rem, auto) minmax(6rem, auto);
    gap: 1rem;
    text-align: center;
    text-decoration: none;
}

.shop-option-card:hover,
.shop-option-card:focus {
    color: var(--primary);
    outline: none;
    text-decoration: none;
}

.shop-option-card:focus-visible .shop-option-icon,
.shop-option-card:focus-visible .shop-option-cta {
    box-shadow: 0 0 0 4px rgba(217, 0, 27, 0.25);
}

.shop-option-card h2 {
    align-self: end;
    margin: 0;
    color: var(--primary);
    font-size: clamp(1.45rem, 2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
}

.shop-option-icon {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color 180ms ease;
}

.shop-option-icon img {
    display: block;
    width: min(72%, 13rem);
    height: 11rem;
    object-fit: contain;
}

.shop-icon-hover {
    display: none !important;
}

.shop-option-card:hover .shop-option-icon,
.shop-option-card:focus .shop-option-icon {
    background: var(--primary);
}

.shop-option-card:hover .shop-icon-default,
.shop-option-card:focus .shop-icon-default {
    display: none;
}

.shop-option-card:hover .shop-icon-hover,
.shop-option-card:focus .shop-icon-hover {
    display: block !important;
}

.shop-option-cta {
    align-self: stretch;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: clamp(1.05rem, 1.45vw, 1.65rem);
    font-weight: 800;
    line-height: 1.2;
    transition: background-color 180ms ease;
}

.shop-option-card:hover .shop-option-cta,
.shop-option-card:focus .shop-option-cta {
    background: #b40016;
}

.shop-option-detail {
    align-self: start;
    color: #6a6a6a;
    padding: 0.25rem 0.5rem 0;
    font-size: clamp(1.05rem, 1.55vw, 1.75rem);
    font-weight: 700;
    line-height: 1.35;
}

.shop-option-detail strong {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .shop-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    .shop-landing {
        padding-top: 2.5rem;
    }

    .shop-landing-title {
        margin-bottom: 2.5rem;
    }

    .shop-option-grid {
        grid-template-columns: 1fr;
    }

    .shop-option-card {
        grid-template-rows: auto 12rem auto auto;
        gap: 0.8rem;
    }

    .shop-option-icon img {
        height: 9.5rem;
    }

    .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;
    }
}
