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;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 15px;
    padding: 12px 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sub-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sub-buttons a:hover {
    border-color: #d7d7d7;
    box-shadow: 0 0 15px #d7d7d7;
    backdrop-filter: blur(12px);
    opacity: 1;
    transform: translateY(-2px);
}

.sub-buttons a:hover::before {
    left: 100%;
}

.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: rgba(30, 41, 59, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 20px 40px;
    margin: 15px 20px 10px;
    transition: all 0.3s ease;
}

.icon {
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    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 rgba(255, 255, 255, 0.1);
    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;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    text-decoration: none;
    color: #d7d7d7;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 15px;
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(24px);
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                -webkit-backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.more-help a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-115%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.2s ease;
    pointer-events: none;
}

.more-help a:hover {
    border-color: rgba(215, 215, 215, 0.6);
    box-shadow: 0 0 20px rgba(215, 215, 215, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-2px);
}

.more-help a:hover::before {
    transform: translateX(115%);
    opacity: 1;
}

/* 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;
}

.view-button.disabled::before {
    content: none;
}

/* Responsive Styles */

/* Large Desktop (1300px and below) */
@media screen and (max-width: 1300px) {
    h1 {
        font-size: 70px;
    }

    .why-us-grid {
        margin: 0 12%;
    }
}

/* Tablet (1024px and below) */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 60px;
        margin-top: 20vh;
    }

    .main-p {
        font-size: 20px;
    }

    .why-us-grid {
        margin: 0 8%;
        gap: 20px;
    }

    .why-us-point {
        padding: 15px 15px 30px;
        margin: 10px;
    }

    .icon {
        width: 70px;
        height: 70px;
    }

    .more-help {
        margin: 80px 15px;
    }
}

/* Small Tablet (768px and below) */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 48px;
        margin-top: 15vh;
    }

    .main-p {
        font-size: 18px;
        padding: 0 20px;
    }

    .sub-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .sub-buttons a {
        width: 80%;
        max-width: 280px;
        justify-content: center;
    }

    .why-us {
        margin-top: 15vh;
        margin-bottom: 60px;
    }

    .why-us-title {
        font-size: 28px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        margin: 0 5%;
    }

    .why-us-point {
        margin: 10px 0;
    }

    .why-us-point hr {
        width: 150px;
    }

    .more-help {
        margin: 60px 15px;
        font-size: 15px;
    }

    .more-help a {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Mobile (576px and below) */
@media screen and (max-width: 576px) {
    h1 {
        font-size: 36px;
        margin-top: 12vh;
    }

    .main-p {
        font-size: 16px;
        padding: 0 15px;
    }

    .sub-buttons {
        margin-top: 25px;
        gap: 12px;
    }

    .sub-buttons a {
        font-size: 14px;
        padding: 10px 15px;
        width: 90%;
    }

    .why-us {
        margin-top: 10vh;
        margin-bottom: 40px;
    }

    .why-us-title {
        font-size: 24px;
        padding: 0 10px;
    }

    .why-us-grid {
        margin: 0 10px;
        gap: 15px;
    }

    .why-us-point {
        padding: 15px 10px 25px;
    }

    .why-us-point h4 {
        font-size: 18px;
    }

    .why-us-point p {
        font-size: 14px;
    }

    .why-us-point hr {
        width: 120px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

    .icon svg {
        width: 28px;
        height: 28px;
    }

    .more-help {
        margin: 40px 10px;
        font-size: 14px;
    }

    .more-help a {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Extra Small Mobile (400px and below) */
@media screen and (max-width: 400px) {
    h1 {
        font-size: 30px;
    }

    .main-p {
        font-size: 14px;
    }

    .sub-buttons a {
        font-size: 13px;
        padding: 8px 12px;
    }

    .why-us-title {
        font-size: 22px;
    }

    .why-us-point h4 {
        font-size: 16px;
    }

    .why-us-point p {
        font-size: 13px;
    }
}