/* Modern Clean Product Page - No Boxes Design */

.product-page-new {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f5ec;
    color: #1a2e22;
    line-height: 1.6;
}

.product-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
}

/* Hero Section */
.product-hero {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
    background: transparent !important;
}

.product-hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem;
    align-items: start;
    background: transparent !important;
}

.product-image-section {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
    background: transparent !important;
}

.product-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.product-purchase-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 46, 34, 0.1);
    background: transparent !important;
}

.product-description-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 46, 34, 0.1);
    background: transparent !important;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: transparent !important;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2e22;
    margin: 0;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #2d5a3d;
    font-weight: 500;
    margin: 0;
}

.product-description {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.product-location {
    font-size: 0.95rem;
    color: #5A6D5D;
    margin: 0;
}

/* Pricing */
.product-pricing {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(26, 46, 34, 0.1);
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 2.5rem;
    color: #2d5a3d;
    font-weight: 700;
}

.discount-text {
    font-size: 0.95rem;
    color: #2d5a3d;
    margin: 0;
    font-weight: 500;
}

/* Variations & Quantity */
.product-variations,
.product-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.variation-label,
.quantity-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2e22;
}

.variation-select,
.quantity-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #1a2e22;
    cursor: pointer;
    transition: border-color 0.2s;
    font-family: inherit;
    width: 100%;
}

@media (max-width: 640px) {
    .variation-select,
    .quantity-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        border-width: 1.5px;
    }
}

.variation-select:hover,
.quantity-select:hover {
    border-color: #2d5a3d;
}

.variation-select:focus,
.quantity-select:focus {
    outline: none;
    border-color: #2d5a3d;
}

/* Add to Cart Button */
.add-to-cart-btn {
    padding: 1.125rem 2rem;
    background: #2d5a3d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
    margin-top: 0.5rem;
    width: 100%;
}

@media (max-width: 640px) {
    .add-to-cart-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
}

.add-to-cart-btn:hover {
    background: #1f4530;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* PayPal Section */
.paypal-section {
    padding: 0.875rem 0;
    border-top: 1px solid rgba(26, 46, 34, 0.1);
    width: 100%;
    overflow: hidden;
    margin-top: 0.75rem;
}

.paypal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.paypal-form input,
.paypal-form img,
.paypal-form section {
    max-width: 100%;
    box-sizing: border-box;
}

.paypal-powered {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    padding: 0 0.5rem;
    word-wrap: break-word;
}

.paypal-powered img {
    height: 0.875rem;
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(26, 46, 34, 0.1);
    margin-top: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    font-size: 2rem;
    line-height: 1;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-content strong {
    font-size: 1rem;
    color: #2d5a3d;
    font-weight: 600;
}

.trust-content span {
    font-size: 0.875rem;
    color: #5A6D5D;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2e22;
    margin: 0 0 0.5rem 0;
}

.reviews-rating {
    font-size: 1.25rem;
    color: #ffc107;
    margin: 0;
}

.reviews-container {
    overflow: hidden;
    position: relative;
}

.reviews-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 60s linear infinite;
    width: max-content;
    padding: 0 2rem;
}

.review-item {
    min-width: 350px;
    max-width: 350px;
    padding: 2rem 0;
}

.review-stars {
    font-size: 1.25rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.review-author {
    font-weight: 600;
    color: #1a2e22;
    margin: 0;
    font-size: 0.95rem;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

/* Features Section */
.features-section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a2e22;
    margin: 0 0 3rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 0;
}

.feature-item strong {
    display: block;
    font-size: 1.125rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item p {
    margin: 0;
    color: #374151;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    font-size: 1.125rem;
    color: #374151;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

/* Usage Section */
.usage-section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.usage-section p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.usage-section p:last-child {
    margin-bottom: 0;
}

.usage-section strong {
    color: #2d5a3d;
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

.comparison-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    max-width: 1000px;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    border-top: 2px solid #2d5a3d;
    border-bottom: 2px solid #2d5a3d;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

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

.comparison-row.header {
    background: #2d5a3d;
    color: white;
    font-weight: 700;
    border-bottom: 2px solid #2d5a3d;
}

.comparison-row.header .comparison-cell {
    color: white;
}

.comparison-row:nth-child(even):not(.header) {
    background: rgba(45, 90, 61, 0.03);
}

.comparison-cell {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.comparison-cell strong {
    color: #1a2e22;
    font-weight: 600;
}

.comparison-row:not(.header) .comparison-cell:nth-child(2) {
    color: #2d5a3d;
    font-weight: 500;
}

.comparison-conclusion {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin: 2rem 0 0 0;
    font-weight: 500;
}

.comparison-conclusion strong {
    color: #2d5a3d;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 1.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 46, 34, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2e22;
    margin: 0 0 0.75rem 0;
}

.faq-item p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .product-hero {
        padding: 1.5rem 1rem;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-image-section {
        position: static !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 1.5rem auto !important;
        order: 1 !important;
    }
    
    .product-main-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .product-info-section {
        width: 100% !important;
        order: 2 !important;
        gap: 1rem;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-title {
        order: 1 !important;
        width: 100% !important;
    }
    
    .product-subtitle {
        order: 2 !important;
        width: 100% !important;
    }
    
    .product-purchase-section {
        order: 3 !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding-top: 1.5rem !important;
    }
    
    .product-description-section {
        order: 4 !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
        padding-top: 1.5rem !important;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .comparison-row.header {
        display: none;
    }
    
    .comparison-row:not(.header) .comparison-cell:first-child {
        font-weight: 700;
        color: #2d5a3d;
        margin-bottom: 0.5rem;
    }
    
    .review-item {
        min-width: 280px;
        max-width: 280px;
    }
    
    .reviews-section,
    .features-section,
    .benefits-section,
    .usage-section,
    .comparison-section,
    .faq-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 640px) {
    .product-hero {
        padding: 1rem 0.75rem;
    }
    
    .product-hero-content {
        gap: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-image-section {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto 1rem auto !important;
        order: 1 !important;
    }
    
    .product-main-image {
        max-height: 300px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .product-info-section {
        width: 100% !important;
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-title {
        order: 1 !important;
        width: 100% !important;
    }
    
    .product-subtitle {
        order: 2 !important;
        width: 100% !important;
    }
    
    .product-purchase-section {
        order: 3 !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding-top: 1rem !important;
    }
    
    .product-description-section {
        order: 4 !important;
        width: 100% !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }
    
    .product-description,
    .product-location {
        font-size: 0.95rem;
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .paypal-section {
        padding: 0.75rem 0;
    }
    
    .paypal-form {
        width: 100%;
        padding: 0;
    }
    
    .paypal-form input {
        width: 100%;
        max-width: 260px;
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        height: 2.25rem;
        min-width: auto;
    }
    
    .paypal-form img {
        width: 100%;
        max-width: 260px;
        height: auto;
        max-height: 24px;
    }
    
    .paypal-powered {
        font-size: 0.7rem;
        padding: 0 0.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-main-image {
        max-height: 300px;
        width: 100%;
    }
    
    .product-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .product-description,
    .product-location {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .product-pricing {
        padding: 0.75rem 0;
    }
    
    .price-row {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
    
    .variation-label,
    .quantity-label {
        font-size: 0.875rem;
        margin-bottom: 0.4rem;
    }
    
    .product-variations,
    .product-quantity {
        margin-bottom: 0.75rem;
    }
    
    .variation-select,
    .quantity-select {
        padding: 0.7rem 0.8rem;
        font-size: 0.875rem;
        border-width: 1.5px;
    }
    
    .add-to-cart-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .trust-badges {
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .trust-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.6rem;
    }
    
    .trust-icon {
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .trust-content strong {
        font-size: 0.875rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    
    .trust-content span {
        font-size: 0.75rem;
        display: block;
        line-height: 1.4;
    }
    
    .reviews-section,
    .features-section,
    .benefits-section,
    .usage-section,
    .comparison-section,
    .faq-section {
        padding: 1.5rem 0.75rem;
    }
    
    .reviews-header h2 {
        font-size: 1.75rem;
    }
    
    .reviews-rating {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-item strong {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .benefits-list {
        gap: 0.75rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .usage-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .comparison-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .comparison-table {
        margin: 1.5rem 0;
    }
    
    .comparison-row {
        padding: 0.875rem;
    }
    
    .comparison-cell {
        font-size: 0.875rem;
    }
    
    .comparison-conclusion {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }
    
    .faq-list {
        gap: 1.5rem;
    }
    
    .faq-item {
        padding-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.125rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .review-item {
        min-width: 260px;
        max-width: 260px;
        padding: 1.5rem 0;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-author {
        font-size: 0.875rem;
    }
}
