/* Container Style */
.product-tabs {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px; /* Adds spacing between tabs */
}

.tab-button {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border: 0.1px solid black;
    background-color: white;
    color: black;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: black;
    color: white;
}

/* Tab Content */
.tab-contents {
    border: 0px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    background-color: white;
    text-align: center;
}

.tab-content {
    display: none; /* Initially hide all tab contents */
}

.tab-content.active {
    display: block; /* Show the active tab content */
}

.tab-content h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: black;
}

.tab-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.tab-content img {
    margin-top: 15px;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
