.product-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (min-width: 995px) {
    .product-container {
        flex-direction: row;
    }
}

.product-image {
    flex: 1;
    min-height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    max-width: 400px;
}

.product-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--discount-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

.product-details {
    flex: 1;
    padding: 2rem;
}

.product-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.price-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.3rem;
    color: #777;
    text-decoration: line-through;
    margin-right: 1rem;
}

.sale-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--discount-color);
}

.savings {
    margin-left: 1rem;
    background-color: #43b143;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
    border: 1px dashed #fff;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list h3 {
    font-size: 20px;
    font-weight: 600;
}

.features-list ul {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.buy-button {
/*    background-color: var(--primary-color);*/
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.buy-button:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(123, 63, 157, 0.4);
}

.testimonials {
    margin-top: 3rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-color);
}

.faq-section {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}
.limited-offer{
    margin-bottom: 10px;
    color: #f70013;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}
@media (max-width: 990px) {
    .product-image{
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .astro-icon {
        font-size: 1em;
    }
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-header::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 3px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 15px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-top: 0;
}

.highlighted {
    background-color: var(--light-bg);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--primary-color);
}
.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-cta h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(121, 40, 202, 0.4);
}

@media (max-width: 768px) {
    .wrapper .container{
        padding: 0px;
    }
    .product-container{
        margin-top:0px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
}
