h1{
    text-align: center;
    color: #d7d7d7;
    margin-top: 25vh;
    font-size: 80px;
}


.main-p{
    text-align: center;
    color: #a0a0a0;
    font-size: 24px;
    margin-top: 20px;
}

.sub-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.sub-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 3px solid #070b97;
    background-color: #030764;
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 0 15px #030764;
    padding: 12px 18px;
    opacity: 0.80;
    transition: all 0.5s ease;
}

.sub-buttons a:hover {
    background-color: #070b97;
    border-color: #d7d7d7;
    box-shadow: 0 0 8px #d7d7d7;
}

.why-us {
    margin-top: 28vh;
    margin-bottom: 80px;
    opacity: 0.9;
}

.why-us-title {
    text-align: center;
    color: #d7d7d7;
    font-size: 36px;
    margin-top: 60px;
}

.why-us-grid{
    margin-top: 6%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 18%;
}

.why-us-point {
    background-color: #02032e;
    border: 2px solid #070b97;
    border-radius: 15px;
    box-shadow: 0 0 25px #030764;
    padding: 20px 20px 40px;
    margin: 15px 20px 10px;
    transition: all 0.3s ease;
}

.icon {
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid #070b97;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}


.why-us-point h4 {
    text-align: center;
    color: #d7d7d7;
    margin-bottom: 10px;
}

.why-us-point hr {
    width: 190px;
    border: 1px solid #070b97;
    margin: 0 auto 15px;
}

.why-us-point p {
    text-align: center;
    color: #a0a0a0;
    font-size: 16px;
}

.more-help {
    text-align: center;
    margin: 120px 20px;
    font-size: 17px;
    color: #d7d7d7;
    opacity: 0.9;
}

.more-help a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #070b97;
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 0 15px #030764;
    transition: all 0.3s ease;
}

.more-help a:hover {
    background-color: #070b97;
    border-color: #d7d7d7;
    box-shadow: 0 0 8px #d7d7d7;
}

/* Out of Stock Styles */
.product.out-of-stock {
    opacity: 0.6;
}

.product.out-of-stock img {
    filter: grayscale(50%);
}

.stock-status.out-of-stock {
    color: #dc3545 !important;
    font-weight: bold;
}

.view-button.disabled {
    display: inline-block;
    background-color: #4a4a4a;
    color: #888;
    border: 2px solid #666;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: not-allowed;
    text-decoration: none;
}