body {
    background: linear-gradient(135deg, #1A0033 0%, #3A0068 100%);
    color: #fff;
    /*line-height: 1.6;
    padding: 20px;*/
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}
.product-description{
    color: #fff;
}
.product-gallery {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.product-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    position: relative;
    background: #fff;
}

.product-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(75, 0, 130, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-info {
    flex: 1.5;
    min-width: 300px;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.product-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
    font-weight: 300;
}

.product-price {
    font-size: 2.5rem;
    color: white;
    margin: 25px 0;
    display: flex;
    align-items: baseline;
    font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.5rem;
    margin-right: 15px;
}

.discount-badge {
    background: var(--accent);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 15px;
}

.product-description {
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-highlights {
    margin: 30px 0;
}

.highlight-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
    font-weight: bold;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.highlight-icon {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-section {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(75, 0, 130, 0.8);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: var(--primary);
}

.quantity-input {
    width: 50px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.add-to-cart-btn {
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.6);
}

.buy-now-btn {
    padding: 15px 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.product-meta {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--light);
    font-size: 0.9rem;
}

.meta-icon {
    margin-right: 8px;
    color: var(--accent);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-right: 15px;
    flex-shrink: 0;
}

.tabs {
    margin: 60px 0;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light);
    position: relative;
}

.tab-header.active {
    color: var(--accent);
}

.tab-header.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.specifications {
    border-radius: 10px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    flex: 1;
    padding: 15px;
    background-color: rgba(75, 0, 130, 0.3);
    font-weight: 500;
}

.spec-value {
    flex: 2;
    padding: 15px;
    background-color: rgba(75, 0, 130, 0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: rgba(75, 0, 130, 0.6);
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(138, 43, 226, 0.6);
}

.faq-answer {
    background: rgba(26, 0, 51, 0.6);
    padding: 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.review-item {
    background: rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.reviewer-name {
    font-weight: 500;
}

.review-date {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 5px;
}

.review-rating {
    color: var(--accent);
}

.review-content {
    margin: 15px 0;
}

.related-products {
    margin: 60px 0 30px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(75, 0, 130, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.product-card-price {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 15px;
}

.product-card-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: rgba(138, 43, 226, 0.5);
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.product-card-btn:hover {
    background: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-title{
        font-size: 25px;
    }
    .product-details {
        flex-direction: column;
    }
    
    .tab-headers {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .add-to-cart-btn, .buy-now-btn {
        width: auto;
        margin: 0 auto;
    }
}

/* Zodiac floating symbols */
.zodiac-symbols {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.zodiac-symbol {
    position: absolute;
    opacity: 0.1;
    color: var(--accent);
    font-size: 2rem;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, 0px); }
}