/* Shop Page Specific Styles */

/* Shop Hero */
.shop-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.shop-hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.shop-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Product */
.featured-product {
    padding: 80px 0;
    background: #fafafa;
}

.product-showcase {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.product-image {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.product-details {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: left;
}

.product-price {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-right: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.product-highlights {
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight-icon {
    background: var(--primary-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Kit Contents */
.kit-contents {
    padding: 80px 0;
    background: white;
}

.kit-contents h2 {
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.content-item {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.content-item h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.content-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Shop Testimonials */
.shop-testimonials {
    padding: 80px 0;
    background: var(--cream);
}

.shop-testimonials .testimonials-grid {
    margin-top: 3rem;
}

/* Coming Soon */
.coming-soon {
    padding: 80px 0;
    background: white;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.coming-soon-item {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.coming-soon-item:hover {
    transform: translateY(-5px);
}

.coming-soon-image {
    height: 200px;
    background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.coming-soon-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.coming-soon-item p {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 1rem;
}

.coming-soon-badge {
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1rem;
    margin: 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: var(--primary-green);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 2rem;
}

.modal-body {
    padding: 2rem;
}

.order-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.order-details h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0 0;
    font-size: 1.2rem;
    color: var(--primary-green);
}

.next-steps {
    margin: 1.5rem 0;
}

.next-steps h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #666;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Mobile Responsive for Shop */
@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        padding: 40px 20px;
    }
    
    .product-details {
        padding: 40px 30px;
    }
    
    .product-details h2 {
        font-size: 2.2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }
    
    .contents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .shop-hero h1 {
        font-size: 2rem;
    }
    
    .product-details {
        padding: 30px 20px;
    }
    
    .product-details h2 {
        font-size: 1.8rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

