body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    position: relative;
}
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(111, 199, 186, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(111, 199, 186, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.3;
}
.glow-circle {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(111, 199, 186, 0.4) 0%, rgba(111, 199, 186, 0) 70%);
    pointer-events: none;
    z-index: 500;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: none;
}
.glow-circle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(111, 199, 186, 0.2) 0%, rgba(111, 199, 186, 0) 70%);
    border-radius: 50%;
    transform: translate(10px, 10px);
    animation: trail 0.3s ease-out infinite;
}
@keyframes trail {
    0% { opacity: 0.2; transform: translate(10px, 10px) scale(1); }
    100% { opacity: 0; transform: translate(20px, 20px) scale(0.5); }
}
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 20px 305px 20px 291px;
    box-sizing: border-box;
    background-color: transparent;
}
.banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(550px, 1fr));
    gap: 20px;
    margin-top: 60px;
}
.product {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(111, 199, 186, 0.2);
    box-sizing: border-box;
    min-height: 480px;
}
.product-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}
.product-image-small {
    width: 250px;
}
.coming-soon {
    position: relative;
}
.coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #ff4d4d;
    color: #ffffff;
    padding: 5px 20px;
    font-size: 1.2em;
    font-weight: bold;
}
.coming-soon img {
    opacity: 0.5;
}
button {
    background-color: #6fc7ba;
    color: #0a0a0a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
button:disabled {
    background-color: #808080;
    cursor: not-allowed;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-content {
    display: flex;
    gap: 20px;
}
.modal-content img {
    max-width: 800px;
    height: auto;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    color: #ffffff;
    cursor: pointer;
}
.about-popover {
    position: fixed;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #6fc7b9;
    max-width: calc(100vw - 40px);
    width: 400px;
    z-index: 1000;
    text-align: left;
    display: none;
    box-sizing: border-box;
}
.about-popover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #1a1a1a;
}
footer {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    clear: both;
    display: flex;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}
footer p {
    display: inline;
    margin: 0;
}
footer a {
    color: #6fc7ba;
}
.sidebar {
    width: 260px;
    float: left;
    margin-right: 1px;
    margin-top: 200px;
    background-color: #312f32;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(111, 199, 186, 0.2);
    z-index: 600;
}
.sidebar-image {
    width: 250px;
    height: 940px;
    display: block;
}
.cart {
    width: 300px;
    float: right;
    margin-left: 5px;
    margin-top: 200px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(111, 199, 186, 0.2);
    text-align: center;
    display: none;
    z-index: 600;
}
.cart h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}
.cart-items {
    margin-bottom: 20px;
}
.cart-total {
    font-weight: bold;
}
.cart-inputs {
    margin-bottom: 20px;
}
.cart-email,
.cart-address {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #ffffff;
}
.checkout,
.clear-cart {
    background-color: #6fc7ba;
    color: #0a0a0a;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin: 5px;
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .modal-content {
        flex-direction: column;
        gap: 10px;
    }
    .modal-content img {
        max-width: 100%;
    }
    .about-popover {
        width: calc(100vw - 40px);
        max-width: none;
        left: 20px !important;
        right: 20px;
        transform: translateX(0);
    }
    .about-popover::after {
        left: 20px;
        transform: none;
    }
}
@media (max-width: 900px) {
    .sidebar {
        float: none;
        width: 100%;
        text-align: center;
        margin: 20px 0;
        padding: 20px;
        background-color: #312f32;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(111, 199, 186, 0.2);
    }
    .sidebar-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
    .cart {
        float: none;
        width: 100%;
        margin: 20px 0;
        padding: 20px;
    }
    .container {
        margin: 0 auto;
        padding: 20px;
        max-width: 100%;
    }
    footer {
        flex-direction: column;
        gap: 5px;
    }
    .glow-circle {
        display: none;
    }
    .product-grid {
        margin-top: 20px;
    }
}