/*
Theme Name: English Shop
Theme URI: https://englishshop.online
Author: English Shop
Author URI: https://englishshop.online
Description: Professional e-commerce theme for English Shop - optimized for WooCommerce digital product sales
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: englishshop
Tags: e-commerce, education, dark, animated, woocommerce
*/

* {
    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: #E5E7EB;
    background: #1F2937;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Stagger animations for multiple elements */
.stagger-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.stagger-4 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }

/* Header */
header.site-header {
    background: #111827;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #374151;
    animation: fadeIn 0.6s ease-out;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #10B981;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: #3B82F6;
}

nav.main-navigation a {
    margin-left: 2rem;
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

nav.main-navigation a:hover {
    color: #10B981;
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #F9FAFB;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid #374151;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #F9FAFB;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #D1D5DB;
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    display: inline-block;
    background: #10B981;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Trust Bar */
.trust-bar {
    background: #111827;
    padding: 2rem 0;
    border-bottom: 1px solid #374151;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #D1D5DB;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.trust-item::before {
    content: "✓";
    color: #10B981;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Section */
section {
    padding: 4rem 0;
    background: #1F2937;
}

section:nth-child(even) {
    background: #111827;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #F9FAFB;
    opacity: 0;
}

.section-title.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Featured Courses */
.featured-courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: #374151;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4B5563;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.course-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: #10B981;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2);
}

.course-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9FAFB;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    border-bottom: 2px solid #10B981;
    transition: background 0.3s ease;
}

.course-card:hover .course-image {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.course-content {
    padding: 1.5rem;
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F9FAFB;
    transition: color 0.3s ease;
}

.course-card:hover .course-title {
    color: #10B981;
}

.course-lessons {
    color: #9CA3AF;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.course-card:hover .course-price {
    transform: scale(1.05);
}

.course-button {
    display: block;
    width: 100%;
    background: #10B981;
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.course-button:hover::before {
    width: 300px;
    height: 300px;
}

.course-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: white;
}

/* Benefits Section */
.benefits {
    background: #111827;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #1F2937;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: all 0.4s ease;
    opacity: 0;
}

.benefit-card.visible {
    animation: scaleIn 0.6s ease-out forwards;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #10B981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #10B981;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F9FAFB;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #10B981;
}

.benefit-text {
    color: #9CA3AF;
    line-height: 1.6;
}

/* All Courses Section */
.all-courses-list {
    max-width: 900px;
    margin: 2rem auto;
}

.course-category {
    margin-bottom: 3rem;
    opacity: 0;
}

.course-category.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F9FAFB;
    border-bottom: 3px solid #10B981;
    padding-bottom: 0.5rem;
}

.course-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #374151;
    border-radius: 8px;
    border: 1px solid #4B5563;
    transition: all 0.3s ease;
}

.course-list-item:hover {
    border-color: #10B981;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.course-info {
    flex: 1;
}

.course-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F9FAFB;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.course-list-item:hover .course-name {
    color: #10B981;
}

.course-meta {
    color: #9CA3AF;
    font-size: 0.9rem;
}

.course-price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.course-list-item:hover .course-price-tag {
    transform: scale(1.1);
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: #374151;
    border-radius: 12px;
    border: 1px solid #4B5563;
    transition: all 0.3s ease;
    opacity: 0;
}

.step-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #10B981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #F9FAFB;
}

.step-text {
    color: #9CA3AF;
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #374151;
    border-radius: 8px;
    border: 1px solid #4B5563;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.visible {
    animation: fadeInUp 0.5s ease-out forwards;
}

.faq-item:hover {
    border-color: #10B981;
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: #10B981;
}

.faq-answer {
    color: #D1D5DB;
    line-height: 1.7;
}

/* Footer */
footer.site-footer {
    background: #0F172A;
    color: #9CA3AF;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #1E293B;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #F9FAFB;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #10B981;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1E293B;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    nav.main-navigation {
        display: none;
    }

    .trust-items {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .course-price-tag {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .logo img {
        height: 40px;
    }
}

/* Scroll reveal utility */
.hidden {
    opacity: 0;
}

/* ============================================
   Fix Legal Pages Formatting - EXCLUDE CONTACT & WOOCOMMERCE PAGES
   ============================================ */

/* Exclude contact page AND WooCommerce pages */
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article p,
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article div {
    margin-bottom: 1.5rem !important;
    line-height: 1.8 !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article br {
    display: block !important;
    margin: 1rem 0 !important;
    content: "" !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) .entry-content {
    white-space: pre-line !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article strong {
    display: block !important;
    margin-top: 2rem !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.1rem !important;
    color: #10B981 !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article ul,
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article ol {
    margin-left: 2rem !important;
    margin-bottom: 1.5rem !important;
    margin-top: 0.5rem !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) article li {
    margin-bottom: 0.5rem !important;
    line-height: 1.7 !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) .entry-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h1,
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h2,
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h3,
.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h4 {
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    color: #10B981 !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h2 {
    font-size: 1.8rem !important;
    border-top: 2px solid #374151 !important;
    padding-top: 2rem !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) h3 {
    font-size: 1.3rem !important;
    color: #3B82F6 !important;
}

.page:not(.page-id-contact):not(.woocommerce-cart):not(.woocommerce-checkout):not(.woocommerce-account) .entry-content a {
    color: #10B981 !important;
    text-decoration: underline !important;
}

/* General page styles - safe for all pages */
.page .site-main {
    padding: 3rem 1rem !important;
}

.page .entry-content {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: #D1D5DB !important;
}

/* ============================================
   Contact Page Specific Styles
   ============================================ */
.page-id-contact .entry-content {
    white-space: normal !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.page-id-contact article p,
.page-id-contact article div {
    margin-bottom: 0 !important;
    line-height: normal !important;
}

/* ============================================
   WooCommerce Pages - Reset Legal Page Styles
   ============================================ */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
    white-space: normal !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.woocommerce-cart article p,
.woocommerce-cart article div,
.woocommerce-checkout article p,
.woocommerce-checkout article div,
.woocommerce-account article p,
.woocommerce-account article div {
    margin-bottom: 0 !important;
    line-height: normal !important;
}

.woocommerce-cart article strong,
.woocommerce-checkout article strong,
.woocommerce-account article strong {
    display: inline !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: inherit !important;
    color: inherit !important;
}

/* ============================================
   WOOCOMMERCE SHOP PAGE STYLING
   ============================================ */

/* Shop page background */
.woocommerce,
.woocommerce-page {
    background: #1F2937 !important;
    padding: 4rem 0;
}

/* Remove sidebar */
.woocommerce .sidebar,
.woocommerce-page .sidebar {
    display: none !important;
}

/* Full width content */
.full-width-shop .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Product grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin: 2rem 0 !important;
}

/* Product cards */
.woocommerce ul.products li.product {
    background: #374151 !important;
    border-radius: 12px !important;
    border: 1px solid #4B5563 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    border-color: #10B981 !important;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2) !important;
}

/* Product image */
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    border-bottom: 2px solid #10B981 !important;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #F9FAFB !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    padding: 1rem !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: #10B981 !important;
}

/* Price */
.woocommerce ul.products li.product .price {
    color: #10B981 !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    padding: 0 1rem 1rem !important;
}

/* Add to Cart button */
.woocommerce ul.products li.product .button {
    background: #10B981 !important;
    color: white !important;
    border: none !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    width: calc(100% - 2rem) !important;
    margin: 0 1rem 1rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #059669 !important;
    transform: translateY(-2px) !important;
}

/* Shop title */
.woocommerce h1.page-title {
    color: #10B981 !important;
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Sorting dropdown */
.woocommerce .woocommerce-ordering select {
    background: #374151 !important;
    color: #E5E7EB !important;
    border: 1px solid #4B5563 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
}

/* Result count */
.woocommerce .woocommerce-result-count {
    color: #9CA3AF !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    color: #9CA3AF !important;
    padding: 1rem 0 !important;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #10B981 !important;
}

/* Single Product Page */
.woocommerce div.product {
    background: #374151 !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid #4B5563 !important;
}

.woocommerce div.product .product_title {
    color: #F9FAFB !important;
}

.woocommerce div.product p.price {
    color: #10B981 !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: #D1D5DB !important;
}

.woocommerce div.product form.cart .button {
    background: #10B981 !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

.woocommerce div.product form.cart .button:hover {
    background: #059669 !important;
}

/* Cart Page */
.woocommerce-cart .woocommerce {
    background: #1F2937 !important;
}

.woocommerce table.shop_table {
    background: #374151 !important;
    border: 1px solid #4B5563 !important;
    color: #E5E7EB !important;
}

.woocommerce table.shop_table th {
    background: #1F2937 !important;
    color: #F9FAFB !important;
}

.woocommerce .cart-collaterals .cart_totals {
    background: #374151 !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    border: 1px solid #4B5563 !important;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    color: #F9FAFB !important;
}

/* Checkout Page */
.woocommerce-checkout .woocommerce {
    background: #1F2937 !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: #374151 !important;
    border: 1px solid #4B5563 !important;
    color: #E5E7EB !important;
}

.woocommerce form .form-row label {
    color: #D1D5DB !important;
}

/* Responsive WooCommerce */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
    
    .full-width-shop .woocommerce {
        padding: 0 1rem;
    }
}