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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #E8B4E8;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.icon {
    font-size: 20px;
    cursor: pointer;
}

/* Product Section */
.product-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f8f8;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #E8B4E8;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 36px;
    font-weight: bold;
    color: #E8B4E8;
}

.old-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.discount-tag {
    background-color: #ff4444;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.color-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-selector label {
    font-weight: 500;
}

.color-btn {
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #E8B4E8;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.color-btn:hover {
    background-color: #E8B4E8;
    color: #fff;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quantity-selector label {
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.qty-btn:hover {
    background-color: #E8B4E8;
    color: #fff;
    border-color: #E8B4E8;
}

#quantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.add-to-cart-btn {
    background-color: #ff8800;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.buy-now-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #ff4444;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.cod-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f0f8;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cod-icon {
    font-size: 32px;
}

.cod-text {
    flex: 1;
}

.cod-text strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.cod-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    color: #E8B4E8;
    font-weight: bold;
}

.feature-item a {
    color: #E8B4E8;
    text-decoration: none;
    transition: color 0.3s;
}

.feature-item a:hover {
    color: #d89cd8;
    text-decoration: underline;
}

/* Regain Control Section */
.regain-control-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f0f8 0%, #fff 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.confidence-issues {
    margin-top: 40px;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.issue-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.issue-card:hover {
    transform: translateY(-5px);
}

.issue-image {
    font-size: 48px;
    margin-bottom: 15px;
}

.issue-card h3 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.issue-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Care Section */
.care-section {
    padding: 80px 0;
    background-color: #fff;
}

.care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.care-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.care-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.usage-description {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefit-card {
    background-color: #f8f0f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
}

/* Effectiveness Section */
.effectiveness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f0f8 100%);
}

.effectiveness-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.effectiveness-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.effectiveness-image img {
    width: 100%;
    height: auto;
    display: block;
}

.effectiveness-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.effectiveness-point h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.effectiveness-point p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f0f8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.testimonial-avatar {
    font-size: 48px;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Specifications Section */
.specifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f0f8 0%, #fff 100%);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.specs-image {
    text-align: center;
}

.specs-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.dimensions {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.dimensions p {
    margin-bottom: 8px;
    font-size: 14px;
}

.specs-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.specs-items,
.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.specs-items li,
.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #666;
}

.features-list li {
    color: #333;
    font-weight: 500;
}

/* Secure Shopping Section */
.secure-shopping-section {
    padding: 80px 0;
    background-color: #fff;
}

.shopping-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.shopping-feature {
    text-align: center;
    padding: 20px;
}

.shopping-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.shopping-feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.shopping-feature p {
    font-size: 14px;
    color: #666;
}

.discount-banner {
    background: linear-gradient(135deg, #E8B4E8 0%, #d89cd8 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.discount-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.discount-banner p {
    font-size: 20px;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
}

.new-price {
    font-size: 28px;
    margin-bottom: 30px;
}

.highlight {
    font-weight: bold;
    font-size: 32px;
}

.cta-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    color: #E8B4E8;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.warnings-section {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.warnings-section h3 {
    color: #856404;
    font-size: 20px;
    margin-bottom: 15px;
}

.warnings-section p {
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f0f8 0%, #fff 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f0f8;
}

.faq-arrow {
    transition: transform 0.3s;
    font-size: 14px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #fff;
}

.overall-rating {
    text-align: center;
    margin-bottom: 50px;
}

.stars-large {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 18px;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.review-card {
    background-color: #f8f0f8;
    padding: 25px;
    border-radius: 12px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E8B4E8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.review-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.review-stars {
    color: #ffd700;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #E8B4E8;
}

.footer-section p a {
    color: #E8B4E8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section p a[href^="tel:"] {
    color: #E8B4E8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a[href^="tel:"]:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-disclaimers {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #555;
}

.disclaimer-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.disclaimer-section p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-section strong {
    color: #fff;
    font-size: 13px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 14px;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background-color: #fff;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 50px;
    font-style: italic;
}

.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f0f8;
    border-radius: 12px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8B4E8;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.content-section a {
    color: #E8B4E8;
    text-decoration: none;
    transition: color 0.3s;
}

.content-section a:hover {
    color: #d89cd8;
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-section {
    background-color: #f8f0f8;
    padding: 30px;
    border-radius: 12px;
}

.contact-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8B4E8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #E8B4E8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #d89cd8;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E8B4E8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #E8B4E8;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #d89cd8;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-wrapper {
        grid-template-columns: 1fr;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .care-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .effectiveness-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-content {
        grid-template-columns: 1fr;
    }
    
    .shopping-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .shopping-features {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

