html {
    scroll-behavior: smooth;
}

body {

    background: linear-gradient(135deg, #0e3331, #034a5c, #00afaf);
    color: white;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: linear-gradient(135deg, #38a2aa, #015858, #009292);
    border-radius: 20px;
    box-shadow: #9aecbc;
}

.logo-1 {
    width: 70px;
    height: 70px;
    border-radius: 50px;
}

.nav-link {
    color: white;
    transition: 0.3s ease;
    font-size: 20px;
    font-weight: 500px;
}

.nav-link:hover {
    color: #bff3f5;
    transform: scale(1.05);
    font-size: 20px;
}

.shop-page {
    background-color: #016d6d;
    padding: 20px 20px 60px;
    color: #fff;
    border-radius: 20px;
}

.shop-hero {
    border-radius: 28px;
    background: linear-gradient(115deg, rgba(190, 238, 250, 0.95), rgba(1, 138, 138, 0.95));
    color: #023352;
    padding: 70px 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    margin-bottom: 25px;
}

.shop-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.shop-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 127, 80, 0.15);
    color: var(--shop-accent-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.shop-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: #014b58;
}

.shop-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--shop-text);
    margin-bottom: 24px;
}

.shop-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.shop-btn {
    color: #014b58;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-btn:hover {
    cursor: pointer;
    transform: translateY(-2px);
}

.shop-btn-primary {
    background: rgb(188, 239, 252);
    color: #012f55;
    box-shadow: 0 8px 20px rgba(71, 204, 228, 0.25);
}

.shop-btn-secondary {
    background: transparent;
    color: rgb(1, 64, 100);
    border: 2px solid rgb(1, 65, 102);
}

.shop-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.shop-stats div {
    background: rgba(162, 219, 245, 0.8);
    border: 1px solid rgba(15, 76, 92, 0.1);
    border-radius: 16px;
    padding: 14px;
}

.shop-stats strong {
    display: block;
    color: rgb(1, 62, 112);
    font-size: 1rem;
}

.shop-stats span {
    font-size: 0.9rem;
    color: rgb(1, 41, 73);
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-pill {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.category-pill.active,
.category-pill:hover {
    background: rgb(1, 77, 87);
    color: white;
}

.shop-products {
    padding: 12px 0 6px;
}

.shop-section-head {
    text-align: center;
    margin-bottom: 24px;
}

.shop-section-head h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

.shop-section-head p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 700px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    background: rgb(172, 229, 243);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.product-card[style*='display: none'] {
    display: none !important;
}

.product-card:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 18px;
    color: rgb(1, 71, 88);
}

.product-info h3 {
    color: black;
    margin-bottom: 8px;
    font-size: 35px;
    font-weight: 400px;
    font-style: italic;
    text-align: center;
}

.product-info p {
    color: black;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.product-meta span {
    background: rgba(255, 127, 80, 0.12);
    color: rgb(1, 62, 90);
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.product-info button {
    border: none;
    width: 100%;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgb(0, 53, 85);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.shop-offer {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.offer-card {
    width: min(760px, 100%);
    background: linear-gradient(135deg, rgba(149, 215, 241, 0.95), rgb(55, 135, 155));
    color: #000000;
    border-radius: 24px;
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.offer-card p {
    margin-bottom: 16px;
    opacity: 0.95;
}

.offer-card a {
    display: inline-block;
    background: #fff;
    color: var(--shop-accent-dark);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.footer {
    background: #014b58;
    padding: 60px 10%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h2 {
    color: #a2defa;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
}

.footer-col p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #abadff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 40px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00ffaa;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 992px) {
    .navbar {
        text-align: center;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        align-items: center;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-col ul li {
        margin: 10px 0;
    }

    .footer-col a {
        text-decoration: none;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 30px;
    }

    .shop-hero {
        padding: 44px 20px;
    }

    .shop-stats {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:460px) {
    .shop-hero h1 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #014b58;
    }
}