/* Web2Print Ecommerce Styling */

.web2print-hero-section {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.web2print-hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease-out;
}

.web2print-hero-section p {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.web2print-hero-section .button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.web2print-hero-section .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.web2print-features {
    margin: 60px auto;
}

.feature-box {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.feature-box h3 {
    color: #667eea;
    margin-top: 0;
}

.web2print-specs {
    background: #f0f0f0;
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.web2print-specs p {
    margin: 8px 0;
}

.bulk-discount-notice {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.web2print-shipping-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    border-left: 4px solid #667eea;
}

.web2print-footer-cta {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.web2print-footer-cta h2 {
    margin: 0 0 10px 0;
    color: #fff;
}

.web2print-footer-cta p {
    margin: 10px 0;
    opacity: 0.9;
}

/* Product Grid Customization */
.woocommerce ul.products li.product {
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #1a1a1a;
    font-weight: 600;
}

.woocommerce ul.products li.product .price {
    color: #667eea;
    font-weight: 700;
}

/* Product Category Styling */
.woocommerce-product-category {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.woocommerce-product-category:hover {
    transform: scale(1.05);
}

/* Cart and Checkout */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-left: 4px solid #667eea;
}

.woocommerce button.button,
.woocommerce input.button {
    background-color: #667eea;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background-color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .web2print-hero-section h1 {
        font-size: 2em;
    }

    .web2print-hero-section p {
        font-size: 1em;
    }

    .web2print-features {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products li.product {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .web2print-hero-section h1 {
        font-size: 1.5em;
    }

    .web2print-hero-section .button {
        padding: 12px 24px;
        font-size: 1em;
    }
}

/* Admin Styling */
#web2print-setup {
    background: white;
    padding: 20px;
    border-radius: 4px;
}

#web2print-setup h1 {
    color: #667eea;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

#web2print-setup h2 {
    color: #333;
    margin-top: 30px;
}

#web2print-setup ol,
#web2print-setup ul {
    line-height: 1.8;
}

#web2print-setup a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

#web2print-setup a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Tabs */
.woocommerce-tabs .wc-tabs li.active a {
    color: #667eea;
    border-bottom-color: #667eea;
}

.woocommerce-tabs .woocommerce-tab {
    padding-bottom: 20px;
}

/* Rating Stars */
.woocommerce .star-rating {
    color: #f39c12;
}

/* Reviews Section */
.woocommerce-Reviews-title {
    color: #1a1a1a;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.woocommerce-review__author {
    color: #667eea;
    font-weight: 600;
}

/* Print Styles */
@media print {
    .web2print-hero-section,
    .web2print-footer-cta,
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info {
        display: none;
    }
}
