/*
Theme Name: Simple WooCommerce Theme
Description: A minimal theme with promotional banner and 5-column product grid for WooCommerce stores
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
Text Domain: simple-woo-theme
*/

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0 !important;
    border: 0 !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.site-branding {
    flex: 1;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.custom-logo-link img {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Cart */
.header-cart {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cart-link:hover {
    color: #3498db;
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.site-content {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
}

.site-main {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Promotional Banner
   ========================================================================== */
.promo-banner {
    margin: 0 0 3rem 0;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.promo-banner a {
    display: block;
    transition: transform 0.3s ease;
}

.promo-banner a:hover {
    transform: scale(1.02);
}

.promo-banner img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   WooCommerce Product Grid - 5 Columns
   ========================================================================== */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 !important;
    width: auto !important;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.8rem 0;
    line-height: 1.4;
    color: #333;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce ul.products li.product .price {
    font-weight: 700;
    color: #e74c3c;
    margin: 0.8rem 0;
    font-size: 1rem;
    margin-top: auto;
}

.woocommerce ul.products li.product .price del {
    color: #999;
    font-weight: 400;
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.woocommerce ul.products li.product .button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 0.5rem;
}

.woocommerce ul.products li.product .button:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Sale Badge */
.woocommerce span.onsale {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* ==========================================================================
   WooCommerce Pages
   ========================================================================== */
.woocommerce-page .entry-title,
.woocommerce .page-title {
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: 2.2rem;
    color: #333;
    font-weight: 700;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 3rem 0;
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination a,
.woocommerce nav.woocommerce-pagination span {
    padding: 0.7rem 1rem;
    border: 2px solid #e1e8ed;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.woocommerce nav.woocommerce-pagination a:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
}

.woocommerce nav.woocommerce-pagination .current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-weight: 500;
}

.woocommerce-message {
    background: #d4edda;
    border-left: 4px solid #27ae60;
    color: #155724;
}

.woocommerce-info {
    background: #d1ecf1;
    border-left: 4px solid #3498db;
    color: #0c5460;
}

.woocommerce-error {
    background: #f8d7da;
    border-left: 4px solid #e74c3c;
    color: #721c24;
}

/* Single Product */
.woocommerce div.product {
    margin: 2rem 0;
}

.woocommerce div.product .summary {
    margin: 1rem 0;
}

/* ==========================================================================
   Blog Posts
   ========================================================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.entry-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #3498db;
}

.entry-summary {
    color: #666;
    margin-bottom: 1rem;
}

.entry-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.read-more {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

/* Page Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.nav-links a {
    padding: 0.7rem 1.5rem;
    background: #3498db;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1;
}

.footer-description {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-navigation a:hover {
    opacity: 0.8;
    color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Tablets */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .site-branding {
        order: 1;
        text-align: center;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
    }
    
    .header-cart {
        order: 2;
        justify-content: center;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-navigation ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .site-main {
        padding: 1.5rem;
    }
    
    .promo-banner img {
        max-height: 200px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .woocommerce ul.products li.product {
        padding: 1rem;
    }
    
    .woocommerce ul.products li.product img {
        height: 150px;
    }
    
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.85rem;
        height: auto;
        min-height: 2.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .main-navigation.menu-open .nav-menu {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .site-main {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .woocommerce ul.products li.product {
        padding: 0.8rem;
    }
    
    .woocommerce ul.products li.product img {
        height: 120px;
    }
    
    .woocommerce ul.products li.product .button {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .promo-banner {
        margin: 0 0 2rem 0;
    }
    
    .promo-banner img {
        max-height: 150px;
    }
    
    .footer-navigation ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Additional WooCommerce Styles
   ========================================================================== */

/* Shop Filters */
.woocommerce-ordering {
    margin-bottom: 2rem;
    text-align: right;
}

.woocommerce-ordering select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

/* Product Categories */
.woocommerce .widget_product_categories ul {
    list-style: none;
    padding: 0;
}

.woocommerce .widget_product_categories li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Cart Table */
.woocommerce table.cart {
    border-collapse: collapse;
    width: 100%;
    margin: 2rem 0;
}

.woocommerce table.cart th,
.woocommerce table.cart td {
    padding: 1rem;
    border: 1px solid #eee;
    text-align: left;
}

.woocommerce table.cart th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    transform: translateY(-2px);
    color: white;
}

/* Forms */
.woocommerce form .form-row {
    margin-bottom: 1rem;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* ==========================================================================
   Modern Single Product Page Styles
   ========================================================================== */

.single-product-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.modern-single-product {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 0;
}

/* Breadcrumb */
.product-breadcrumb {
    padding: 1.5rem 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-breadcrumb .woocommerce-breadcrumb {
    color: white;
    font-size: 0.9rem;
}

.product-breadcrumb .woocommerce-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb .woocommerce-breadcrumb a:hover {
    color: white;
}

/* Main Product Content Layout */
.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 2rem;
    align-items: start;
}

/* Product Images Section */
.product-images-section {
    position: relative;
}

.woocommerce-product-gallery {
    position: relative;
}

.woocommerce-product-gallery__wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.woocommerce-product-gallery__image {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Sale Badge */
.onsale {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
}

/* Product Details Section */
.product-details-section {
    padding: 2rem 0;
}

.product_title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Star Rating */
.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 2rem 0;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.star-rating span {
    color: #ffd700;
    font-size: 1.2rem;
}

.woocommerce-review-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.woocommerce-review-link:hover {
    color: #3498db;
}

/* Price */
.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price .woocommerce-Price-amount {
    color: #e74c3c;
}

.price del {
    color: #999;
    font-size: 1.5rem;
    font-weight: 400;
}

.price ins {
    text-decoration: none;
    color: #27ae60;
}

/* Product Description */
.woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

/* Add to Cart Section */
.cart {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid #f1f2f6;
    margin: 2rem 0;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quantity label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.quantity .qty {
    width: 80px;
    padding: 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

.quantity .qty:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.single_add_to_cart_button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

/* Product Meta */
.product_meta {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
}

.product_meta > span {
    display: block;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #666;
}

.product_meta a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.product_meta a:hover {
    color: #2980b9;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,1);
}

.feature-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.feature-text span {
    font-size: 0.8rem;
    color: #666;
}

/* Product Tabs */
.product-tabs-section {
    padding: 3rem 2rem;
    background: #fff;
}

.woocommerce-tabs {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.wc-tabs {
    display: flex;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    list-style: none;
}

.wc-tabs li {
    flex: 1;
    margin: 0;
}

.wc-tabs li a {
    display: block;
    padding: 1.5rem 2rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.wc-tabs li.active a,
.wc-tabs li a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.wc-tab {
    padding: 3rem;
    background: #fff;
}

.wc-tab h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
}

.wc-tab p {
    line-height: 1.7;
    color: #555;
    margin: 1rem 0;
}

/* Related Products */
.related-products-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.related.products h2,
.upsells.products h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin: 0 0 3rem 0;
    font-weight: 700;
}

.related.products ul,
.upsells.products ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile Responsive for Product Page */
@media (max-width: 1024px) {
    .product-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .product-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-single-product {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .product_title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .product-main-content {
        padding: 1.5rem 1rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
    }
    
    .wc-tabs {
        flex-direction: column;
    }
    
    .wc-tab {
        padding: 2rem 1.5rem;
    }
    
    .product-breadcrumb {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .product_title {
        font-size: 1.7rem;
    }
    
    .price {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .single_add_to_cart_button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-text strong {
        font-size: 0.8rem;
    }
    
    .feature-text span {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .site-header,
    .site-footer,
    .header-cart,
    .promo-banner {
        display: none;
    }
    
    .site-content {
        padding: 0;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}