/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #101010;
    /* Dark background for Avengers theme */
    color: #fff;
    /* White text for better contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.product-page {
    max-width: 1000px;
    background-color: #1a1a1a;
    /* Darker background for the product page */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    /* Gold shadow for Avengers theme */
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.avengers-title {
    font-size: 32px;
    color: #ffcc00;
    /* Avengers theme color */
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.8);
}

.image-gallery {
    width: 40%;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.thumbnail-list img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail-list img:hover {
    transform: scale(1.1);
}

.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    border-radius: 8px;
    transition: opacity 0.5s ease;
}

.vapor-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s ease, opacity 0.8s ease;
    opacity: 0;
}

.vapor-effect.active {
    clip-path: circle(150% at 50% 50%);
    opacity: 1;
}

.breadcrumb {
    font-size: 14px;
    color: #ffcc00;
    /* Avengers theme color */
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #ffcc00;
    /* Avengers theme color */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-details {
    width: 60%;
}

.product-details h1 {
    font-size: 24px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
    color: #ffcc00;
    /* Avengers theme color */
    margin-bottom: 15px;
}

.discounted-price {
    font-size: 24px;
    font-weight: bold;
    color: #e53935;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.discount {
    color: #388e3c;
    margin-left: 5px;
}

.rating {
    font-size: 16px;
    color: #ccc;
    margin-top: 5px;
}

.size-selector {
    margin: 15px 0;
}

.size-selector h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.size-selector button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    margin-right: 5px;
    transition: background-color 0.3s;
}

.size-selector button:hover {
    background-color: #e68900;
}

.offers h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.offer-tag {
    background-color: #ffcc00;
    padding: 2px 4px;
    border-radius: 3px;
    color: #101010;
}

.delivery h3 {
    font-size: 18px;
    margin: 15px 0 5px;
}

.delivery input {
    padding: 8px;
    margin-right: 5px;
    border: none;
    border-radius: 4px;
}

.delivery button {
    padding: 8px 12px;
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.delivery button:hover {
    background-color: #e68900;
}

.action-buttons {
    margin-top: 20px;
}

.action-buttons button {
    padding: 12px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart {
    background-color: #ff9800;
    color: #fff;
}

.buy-now {
    background-color: #e53935;
    color: #fff;
}

.add-to-cart:hover {
    background-color: #e68900;
}

.buy-now:hover {
    background-color: #d32f2f;
}

/* Fade-in animation for the product page */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}