body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
    background-color: black;
    color: white;
    padding: 80px 20px 40px;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px; /* Increased margin */
    margin-left: 10px;
}

h1, h2, h3, h4 {
    margin: 0;
}

h1 {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

h2 {
    font-size: 1.2em;
    color: #ff6b6b;
    margin-bottom: 20px;
}

h2 .highlight {
    color: red;
}

h2 .white-text {
    color: white;
}

h2 .black-text {
    color: black;
}

h3 {
    font-size: 1.8em;
    margin: 20px 0; 
}

h4 {
    font-size: 1em;
    color: #4CAF50;
    align-self: flex-start;
    margin-top: 10px;
}

.flag {
    font-size: 2em;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;  
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 200px; */
}

.main-image-wrapper {
    display: flex;
    justify-content: center;  
    align-items: center;      
    width: 100%;              
    height: auto;            
}

img.main-image {
    width: 80%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: filter 0.3s ease
}

img.main-image.hidden {
    opacity: 0; /* Hide the image */
}

.main-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 2em;
    opacity: 0;
    transition: opacity 0.3s ease;
} 
/* .main-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 2em;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-align: center;
    visibility: visible; /* Ensure overlay is visible 
} */

.product-description {
    text-align: center;
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: bold;
}

.price-and-timer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    padding-left: 5px;
}

.price-and-timer h4 {
    color: #4169E1; /* Blue color for "Fast Delivery" */
}


.price {
    color: white;
    font-weight: bold;
}

.timer-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.timer-text {
    margin-right: 10px;
}

.timer {
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #ff6b6b;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.size-buttons, .pay-button {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

button:active {
    transform: scale(0.95);
}

.size-buttons button.selected {
    background-color: #ff6b6b;
    color: black;
}

#payNowBtn {
    font-weight: bold;
    background-color: #ff6b6b;
    color: white;
}

#payNowBtn:hover {
    background-color: #ff8c8c;
}

.pay-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#liveData {
    margin-left: 10px;
    font-size: 16px;
}

#itemsLeft {
    font-weight: bold;
    color: #ff6b6b;
}

.recent-releases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.recent-release-item {
    width: calc(29% - 10px);
    text-align: center;
    padding: 20px 0; /* Added padding */
}

.recent-release-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
}

.recent-release-item p {
    margin-top: 10px;
    font-size: 1.1em; /* Increased font size */
}

.join-community {
    font-size: 1.2em;
    font-weight: bold;
    padding: 15px 30px;
    margin-bottom: 40px;
    background-color: #4169E1;
    border-color: #4169E1;
}

.coming-soon {
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    padding: 50px 0 0px;
    white-space: nowrap;  
    /* text-align: center;
    color: #ff6b6b;
    font-size: 1.8em;  
    margin: 0; */
}

.faq-section {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    text-align: left;
    align-self: flex-start; /* Align to the left */
    padding-left: calc((100% - 600px) / 2); /* Align with the first image when row is full */
}

@media (max-width: 600px) {
    .faq-section {
        padding-left: 0; /* Remove padding on smaller screens */
    }
}

.faq-heading {
    color: #4169E1;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

/* 
.faq-answer {
    /* max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; 
    font-size: 0.9em; 
    color: #c0c0c0; 
    margin-top: 5px; 
    line-height: 1.4; 
    transition: max-height 0.3s ease, opacity 0.3s ease;
} */

.faq-answer {
    /* max-height: 0; */
    overflow: hidden;  
    font-size: 14px;
    /* opacity: 0; Hide the content completely */
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 800px; /* Adjust this value based on your content */
}


/* Styling for the FAQ toggle '+' sign to make it red */
.faq-toggle {
    color: red; /* Make the '+' sign red */
    margin-left: 10px; /* Ensure spacing from the question text */
    cursor: pointer; /* Indicates the element is interactive */
    font-weight: bold; /* Optionally make the '+' sign bold */
}

.button-large-centered {
    /* font-size: 1.5em;  
    padding: 15px 30px;  
    margin: 0 auto; 
    display: block;   
    */ 


    /* font-size: 1.2em;
    display: block;
    width: fit-content;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: margin-top 0.3s ease; */

    font-size: 1.3em; /* Slightly bigger font size */
    padding: 18px 36px; /* Increased padding for a larger button */
    display: block;
    margin: 0 auto; /* Center horizontally */
    width: fit-content;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-large-centered:hover {
    background-color: #ff8c8c; /* Lighter shade for hover effect */
    transform: scale(1.05); /* Slight grow effect on hover */
}

/* .coming-soon {
    margin-bottom: 20px;  
    font-size: 1.6em;
    color: #ff6b6b; 
} */

.recent-releases {
    /* margin-top: 0px; */
    padding-top: 20px;
}

.no-releases-padding {
    padding-top: 50px; /* Adjust this value as needed for visual appeal */
    padding-bottom: 30px; /* Provides space below the button */
}

