/*
Theme Name: My Custom Woo
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A custom WooCommerce theme designed specifically for clothing shops. Features modern design, product showcases, and optimized shopping experience.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-woo
Tags: e-commerce, woocommerce, clothes, fashion, shop, retail
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --hover-color: #1a252f;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding h1 {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.site-branding a {
    color: var(--primary-color);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

/* Top Menu Bar */
.top-menu-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.top-navigation {
    display: flex;
    justify-content: center;
}

.top-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.top-menu li {
    position: relative;
}

.top-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
}

.top-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.top-menu li.current-menu-item > a,
.top-menu li.current_page_item > a {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.main-navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-navigation a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cart-icon {
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ==========================================================================
   WooCommerce Products
   ========================================================================== */

.woocommerce-products-header {
    margin-bottom: 40px;
}

.woocommerce-products-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    margin: 15px 15px 10px;
    color: var(--text-color);
}

.woocommerce ul.products li.product .price {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 0 15px 15px;
}

.woocommerce ul.products li.product .button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--hover-color);
}

.woocommerce span.onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ==========================================================================
   Single Product
   ========================================================================== */

.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.woocommerce div.product .images {
    position: sticky;
    top: 100px;
}

.woocommerce div.product img {
    border-radius: 8px;
}

.woocommerce div.product .summary {
    padding: 20px 0;
}

.woocommerce div.product .product_title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.woocommerce div.product p.price {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product form.cart .quantity {
    display: inline-block;
    margin-right: 10px;
}

.woocommerce div.product form.cart input.qty {
    width: 60px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    padding: 12px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background-color: var(--hover-color);
}

/* ==========================================================================
   Cart Page
   ========================================================================== */

.cart-page {
    padding: 40px 20px;
}

.cart-page .page-header {
    margin-bottom: 40px;
    text-align: center;
}

.cart-page .page-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.woocommerce table.shop_table {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    margin-bottom: 30px;
    background: white;
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    background-color: var(--light-bg);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table .product-remove {
    width: 50px;
    text-align: center;
}

.woocommerce table.shop_table .product-remove a {
    color: #999;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: color 0.3s ease;
}

.woocommerce table.shop_table .product-remove a:hover {
    color: var(--secondary-color);
}

.woocommerce table.shop_table .product-thumbnail {
    width: 120px;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.woocommerce table.shop_table .product-name {
    min-width: 250px;
}

.woocommerce table.shop_table .product-name a {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--secondary-color);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}

.woocommerce table.shop_table .product-quantity {
    width: 150px;
}

.woocommerce table.shop_table input.qty {
    width: 70px;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.woocommerce-cart-form .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 0 0 8px 8px;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-cart-form .actions .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce-cart-form .actions .coupon label {
    font-weight: 600;
    margin-right: 10px;
}

.woocommerce-cart-form .actions .coupon input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 200px;
}

.woocommerce-cart-form .actions button {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.woocommerce-cart-form .actions button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cart-collaterals {
    margin-top: 50px;
}

.cart_totals {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    margin-left: auto;
}

.cart_totals h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.cart_totals table {
    width: 100%;
    margin-bottom: 20px;
}

.cart_totals table th,
.cart_totals table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart_totals table th {
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
}

.cart_totals table td {
    text-align: right;
    color: var(--text-color);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    border-bottom: none;
}

.woocommerce-checkout-payment {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
}

.wc-proceed-to-checkout {
    padding: 20px 0 0;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid;
}

.woocommerce-message {
    background-color: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.woocommerce-info {
    background-color: #d1ecf1;
    border-color: var(--accent-color);
    color: #0c5460;
}

.woocommerce-error {
    background-color: #f8d7da;
    border-color: var(--secondary-color);
    color: #721c24;
}

/* Empty Cart Styles */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.woocommerce-cart .cart-empty:before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 80px;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
}

.return-to-shop {
    margin-top: 30px;
}

.return-to-shop .button {
    padding: 12px 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.return-to-shop .button:hover {
    background-color: var(--hover-color);
}

/* ==========================================================================
   Product Categories
   ========================================================================== */

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.product-category-item {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.product-category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-category-item:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255,255,255,0.8);
}

.footer-widget a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-section h2 {
        font-size: 32px;
    }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Cart Styles */
    .cart-page {
        padding: 20px 10px;
    }
    
    .cart-page .page-title {
        font-size: 28px;
    }
    
    .woocommerce table.shop_table {
        border: none;
    }
    
    .woocommerce table.shop_table thead {
        display: none;
    }
    
    .woocommerce table.shop_table,
    .woocommerce table.shop_table tbody,
    .woocommerce table.shop_table tr,
    .woocommerce table.shop_table td {
        display: block;
        width: 100%;
    }
    
    .woocommerce table.shop_table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
        position: relative;
    }
    
    .woocommerce table.shop_table td {
        border: none;
        padding: 10px 0;
        text-align: left !important;
    }
    
    .woocommerce table.shop_table td:before {
        content: attr(data-title);
        font-weight: 600;
        display: inline-block;
        margin-right: 10px;
        min-width: 100px;
    }
    
    .woocommerce table.shop_table .product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        width: auto;
    }
    
    .woocommerce table.shop_table .product-remove:before {
        content: none;
    }
    
    .woocommerce table.shop_table .product-thumbnail {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
    
    .woocommerce table.shop_table .product-thumbnail:before {
        content: none;
    }
    
    .woocommerce table.shop_table .product-thumbnail img {
        margin: 0 auto;
    }
    
    .woocommerce-cart-form .actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .woocommerce-cart-form .actions .coupon {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .woocommerce-cart-form .actions .coupon input {
        width: 100%;
        min-width: 100%;
    }
    
    .woocommerce-cart-form .actions button {
        width: 100%;
    }
    
    .cart_totals {
        max-width: 100%;
        margin: 20px 0 0 0;
    }
    
    .empty-cart-wrapper .empty-cart-icon i {
        font-size: 60px;
    }
}

/* Empty Cart Styles */
.empty-cart-wrapper {
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart-wrapper .empty-cart-icon {
    margin-bottom: 30px;
}

.empty-cart-wrapper .empty-cart-icon i {
    font-size: 100px;
    color: var(--border-color);
}

.empty-cart-wrapper h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.empty-cart-wrapper .return-to-shop {
    margin-top: 20px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* ==========================================================================
   Beautiful Custom Cart Page Styles
   ========================================================================== */

:root {
    --cart-gradient-1: #667eea;
    --cart-gradient-2: #764ba2;
    --cart-gradient-3: #f093fb;
    --cart-gradient-4: #4facfe;
    --cart-accent-pink: #ff6b9d;
    --cart-accent-purple: #c471ed;
    --cart-accent-blue: #12c2e9;
    --cart-accent-orange: #f76b1c;
    --cart-success-green: #11cabe;
    --cart-shadow: rgba(102, 126, 234, 0.2);
}

.beautiful-cart-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Cart Header Banner with Gradient */
.cart-header-banner {
    background: linear-gradient(135deg, var(--cart-gradient-1) 0%, var(--cart-gradient-2) 100%);
    padding: 60px 20px;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.cart-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cart-header-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cart-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cart-icon-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.cart-icon-wrapper .cart-icon {
    width: 80px;
    height: 80px;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cart-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cart-subtitle {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 300;
}

/* Cart Items Section */
.cart-items-section {
    padding: 0 20px;
    margin-bottom: 40px;
}

.cart-item-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.cart-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--cart-gradient-1), var(--cart-gradient-3));
}

.cart-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: var(--cart-gradient-1);
}

/* Remove Button */
.remove-item-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-orange));
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.remove-item-btn svg {
    width: 18px;
    height: 18px;
    color: white;
}

.remove-item-btn:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.5);
}

/* Cart Item Image */
.cart-item-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item-card:hover .cart-item-image img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--cart-accent-orange), var(--cart-accent-pink));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(247, 107, 28, 0.4);
}

/* Cart Item Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 50px;
}

.cart-item-info {
    margin-bottom: 20px;
}

.product-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-title a {
    color: var(--text-color);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-title a:hover {
    opacity: 0.8;
}

.product-price-mobile {
    display: none;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

/* Cart Item Actions */
.cart-item-actions {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-selector input.qty {
    width: 80px;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.quantity-selector input.qty:focus {
    outline: none;
    border-color: var(--cart-gradient-1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.item-price-section,
.item-subtotal-section {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    border-radius: 12px;
}

.price-label,
.subtotal-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 600;
}

.unit-price,
.item-subtotal {
    display: block;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.backorder-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    border-radius: 8px;
    font-size: 13px;
    color: var(--cart-accent-orange);
    font-weight: 600;
    margin-top: 10px;
}

.backorder-notice svg {
    width: 18px;
    height: 18px;
}

/* Cart Actions Bar */
.cart-actions-bar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Coupon Section */
.coupon-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.coupon-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cart-accent-blue), var(--cart-success-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coupon-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.coupon-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--cart-gradient-1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.apply-coupon-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--cart-accent-blue), var(--cart-success-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 194, 233, 0.3);
}

.apply-coupon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 194, 233, 0.4);
}

/* Update Cart Button */
.update-cart-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px var(--cart-shadow);
}

.update-cart-btn svg {
    width: 18px;
    height: 18px;
}

.update-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--cart-shadow);
}

/* Cart Totals Sidebar */
.cart-collaterals {
    padding: 0 20px 40px;
}

.cart_totals {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin-left: auto;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cart_totals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cart-gradient-1), var(--cart-gradient-3), var(--cart-gradient-4));
}

.cart_totals h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cart_totals table th {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart_totals table td {
    font-weight: 600;
    font-size: 16px;
}

.cart_totals .order-total th {
    font-size: 20px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart_totals .order-total td {
    font-size: 28px;
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Checkout Button */
.wc-proceed-to-checkout .checkout-button {
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-orange));
    padding: 18px;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
    position: relative;
    overflow: hidden;
}

.wc-proceed-to-checkout .checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.wc-proceed-to-checkout .checkout-button:hover::before {
    left: 100%;
}

.wc-proceed-to-checkout .checkout-button:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.5);
}

/* Enhanced Messages */
.woocommerce-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3f2d0 100%);
    border-left: 5px solid var(--cart-success-green);
    box-shadow: 0 4px 15px rgba(17, 202, 190, 0.2);
}

.woocommerce-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 5px solid var(--cart-accent-blue);
    box-shadow: 0 4px 15px rgba(18, 194, 233, 0.2);
}

.woocommerce-error {
    background: linear-gradient(135deg, #f8d7da 0%, #fcc2c7 100%);
    border-left: 5px solid var(--cart-accent-pink);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

/* Responsive Design for Beautiful Cart */
@media (max-width: 1024px) {
    .cart-item-actions {
        grid-template-columns: 180px 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cart-header-banner {
        padding: 40px 20px;
        border-radius: 0 0 20px 20px;
    }

    .cart-page-title {
        font-size: 32px;
    }

    .cart-subtitle {
        font-size: 16px;
    }

    .cart-icon-wrapper .cart-icon {
        width: 60px;
        height: 60px;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .cart-item-image {
        height: 250px;
    }

    .cart-item-details {
        padding-right: 0;
    }

    .remove-item-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .remove-item-btn svg {
        width: 16px;
        height: 16px;
    }

    .cart-item-actions {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .item-price-section,
    .item-subtotal-section {
        display: none;
    }

    .product-price-mobile {
        display: block;
    }

    .quantity-selector {
        justify-content: space-between;
    }

    .cart-actions-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        margin: 0 10px 30px;
    }

    .coupon-section {
        flex-direction: column;
        align-items: stretch;
        min-width: 100%;
    }

    .coupon-input {
        min-width: 100%;
    }

    .update-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .cart_totals {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .cart-page-title {
        font-size: 26px;
    }

    .product-title {
        font-size: 18px;
    }

    .cart-item-card {
        padding: 15px;
    }

    .cart-actions-bar {
        padding: 15px;
    }

    .cart_totals {
        padding: 25px;
    }

    .cart_totals h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Beautiful Empty Cart Page Styles
   ========================================================================== */

.beautiful-empty-cart-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    min-height: 600px;
}

/* Empty Cart Animation */
.empty-cart-animation {
    position: relative;
    margin-bottom: 50px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon-container {
    position: relative;
    z-index: 2;
}

.empty-cart-svg {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.2));
    animation: cartBounce 2s ease-in-out infinite;
}

@keyframes cartBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cart-body {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

.cart-eye {
    animation: blink 4s ease-in-out infinite;
}

@keyframes blink {
    0%, 48%, 52%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 32px;
    opacity: 0.6;
    animation: floatAround 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.float-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.float-4 {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(-10px, -25px) rotate(-5deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(15px, -10px) rotate(3deg);
        opacity: 0.6;
    }
}

/* Empty Cart Content */
.empty-cart-content {
    margin-bottom: 60px;
}

.empty-cart-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.empty-cart-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.empty-cart-submessage {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Continue Shopping Button */
.empty-cart-actions {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.continue-shopping-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.continue-shopping-btn:hover::before {
    width: 300px;
    height: 300px;
}

.continue-shopping-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.continue-shopping-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.empty-cart-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--cart-gradient-1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

/* Responsive Design for Empty Cart */
@media (max-width: 768px) {
    .beautiful-empty-cart-wrapper {
        padding: 60px 20px;
    }

    .empty-cart-animation {
        height: 200px;
        margin-bottom: 40px;
    }

    .empty-cart-svg {
        width: 150px;
        height: 150px;
    }

    .float-item {
        font-size: 24px;
    }

    .empty-cart-title {
        font-size: 36px;
    }

    .empty-cart-message {
        font-size: 18px;
    }

    .empty-cart-submessage {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .continue-shopping-btn {
        padding: 16px 35px;
        font-size: 16px;
    }

    .empty-cart-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .beautiful-empty-cart-wrapper {
        padding: 40px 15px;
    }

    .empty-cart-animation {
        height: 180px;
    }

    .empty-cart-svg {
        width: 120px;
        height: 120px;
    }

    .empty-cart-title {
        font-size: 28px;
    }

    .empty-cart-message {
        font-size: 16px;
    }

    .continue-shopping-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================================================
   Beautiful Page Content Styles (content-page.php)
   ========================================================================== */

.beautiful-page-article {
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 40px 20px;
}

/* Beautiful Page Header */
.beautiful-page-header {
    background: linear-gradient(135deg, var(--cart-gradient-1) 0%, var(--cart-gradient-2) 100%);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

.page-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
    animation: float 6s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.beautiful-page-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--cart-accent-pink), var(--cart-accent-orange));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(255, 107, 157, 0.4);
    animation: expandWidth 0.8s ease-out 0.3s both;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Beautiful Entry Content */
.beautiful-entry-content {
    padding: 60px 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.beautiful-entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-color);
}

.beautiful-entry-content h2,
.beautiful-entry-content h3,
.beautiful-entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.beautiful-entry-content h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.beautiful-entry-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cart-gradient-1), var(--cart-gradient-3));
    border-radius: 2px;
}

.beautiful-entry-content h3 {
    font-size: 28px;
}

.beautiful-entry-content h4 {
    font-size: 22px;
}

.beautiful-entry-content ul,
.beautiful-entry-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.beautiful-entry-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.beautiful-entry-content ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.beautiful-entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    border-radius: 50%;
}

.beautiful-entry-content a {
    color: var(--cart-gradient-1);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.beautiful-entry-content a:hover {
    border-bottom-color: var(--cart-gradient-1);
    color: var(--cart-gradient-2);
}

.beautiful-entry-content img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    transition: transform 0.3s ease;
}

.beautiful-entry-content img:hover {
    transform: scale(1.02);
}

.beautiful-entry-content blockquote {
    margin: 30px 0;
    padding: 25px 30px 25px 70px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    border-left: 5px solid var(--cart-gradient-1);
    border-radius: 12px;
    position: relative;
    font-style: italic;
    color: #555;
}

.beautiful-entry-content blockquote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 60px;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.beautiful-entry-content pre {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    border-left: 4px solid var(--cart-gradient-1);
    margin: 20px 0;
}

.beautiful-entry-content code {
    background: #f4f4f4;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--cart-accent-pink);
}

.beautiful-entry-content pre code {
    background: none;
    padding: 0;
}

.beautiful-entry-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.beautiful-entry-content table th {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.beautiful-entry-content table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.beautiful-entry-content table tr:last-child td {
    border-bottom: none;
}

.beautiful-entry-content table tr:hover {
    background-color: #f8f9fa;
}

/* Page Links Navigation */
.page-links-navigation {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    border-radius: 12px;
    text-align: center;
}

.page-links-label {
    font-weight: 600;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-links-navigation .page-number {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    background: white;
    border-radius: 8px;
    color: var(--cart-gradient-1);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-links-navigation .page-number:hover {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.page-links-navigation a {
    text-decoration: none;
}

/* Beautiful Entry Footer */
.beautiful-entry-footer {
    padding: 30px 40px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    text-align: center;
    border-top: 1px solid #eee;
}

.edit-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.edit-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.edit-link-btn a {
    color: white;
    text-decoration: none;
}

/* Responsive Design for Beautiful Pages */
@media (max-width: 768px) {
    .page-content-wrapper {
        margin: 20px 10px;
        border-radius: 15px;
    }

    .beautiful-page-header {
        padding: 60px 25px 40px;
    }

    .beautiful-page-title {
        font-size: 32px;
    }

    .beautiful-entry-content {
        padding: 40px 25px;
    }

    .beautiful-entry-content h2 {
        font-size: 28px;
    }

    .beautiful-entry-content h3 {
        font-size: 22px;
    }

    .beautiful-entry-content h4 {
        font-size: 18px;
    }

    .beautiful-entry-content blockquote {
        padding: 20px 20px 20px 55px;
    }

    .beautiful-entry-content blockquote::before {
        font-size: 40px;
        left: 15px;
    }

    .beautiful-entry-footer {
        padding: 20px 25px;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .beautiful-page-header {
        padding: 40px 20px 30px;
    }

    .beautiful-page-title {
        font-size: 26px;
    }

    .beautiful-entry-content {
        padding: 30px 20px;
    }

    .beautiful-entry-content h2 {
        font-size: 24px;
    }

    .beautiful-entry-content blockquote {
        padding: 15px 15px 15px 45px;
    }

    .beautiful-entry-content table {
        font-size: 14px;
    }

    .beautiful-entry-content table th,
    .beautiful-entry-content table td {
        padding: 10px;
    }

    .page-links-navigation {
        padding: 20px 15px;
    }

    .page-links-navigation .page-number {
        padding: 6px 12px;
        margin: 3px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Beautiful Search Page Styles
   ========================================================================== */

.beautiful-search-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Search Header Banner */
.search-header-banner {
    background: linear-gradient(135deg, var(--cart-gradient-1) 0%, var(--cart-gradient-2) 100%);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
}

.search-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.search-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.search-icon-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.search-icon-wrapper .search-icon {
    width: 80px;
    height: 80px;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.search-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.6s ease-out;
}

.search-query {
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.search-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Search Form in Header */
.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.search-form-wrapper .search-form {
    display: flex;
    gap: 10px;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-form-wrapper .search-form input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

.search-form-wrapper .search-form button,
.search-form-wrapper .search-form input[type="submit"] {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-form-wrapper .search-form button:hover,
.search-form-wrapper .search-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Search Results Container */
.search-results-container {
    padding: 0 20px 60px;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.search-result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: var(--cart-gradient-1);
}

/* Result Thumbnail */
.result-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .result-thumbnail img {
    transform: scale(1.05);
}

.post-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.post-type-badge svg {
    width: 16px;
    height: 16px;
}

/* Result Content */
.result-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-header {
    margin-bottom: 15px;
}

.result-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.result-title a {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.result-title a:hover {
    opacity: 0.8;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #999;
}

.result-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-date svg {
    width: 16px;
    height: 16px;
}

.product-price {
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.read-more-btn svg {
    width: 18px;
    height: 18px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--cart-gradient-1);
}

.pagination a svg {
    width: 18px;
    height: 18px;
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.pagination .current {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pagination .dots {
    background: transparent;
    box-shadow: none;
    color: #999;
}

/* No Results Content */
.no-results-content {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.no-results-icon {
    margin-bottom: 30px;
}

.no-results-icon svg {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.2));
    animation: noResultFloat 3s ease-in-out infinite;
}

@keyframes noResultFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.no-results-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.no-results-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.no-results-suggestions {
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.no-results-suggestions h3 {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
}

.no-results-suggestions li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.no-results-suggestions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cart-gradient-1);
    font-weight: bold;
    font-size: 18px;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.quick-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.quick-link-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Search Page */
@media (max-width: 768px) {
    .search-header-banner {
        padding: 60px 25px 40px;
        border-radius: 0 0 20px 20px;
    }

    .search-page-title {
        font-size: 28px;
    }

    .search-subtitle {
        font-size: 16px;
    }

    .search-icon-wrapper .search-icon {
        width: 60px;
        height: 60px;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-thumbnail {
        height: 200px;
    }

    .result-content {
        padding: 20px;
    }

    .result-title {
        font-size: 20px;
    }

    .no-results-icon svg {
        width: 120px;
        height: 120px;
    }

    .no-results-title {
        font-size: 28px;
    }

    .no-results-suggestions {
        padding: 20px;
    }

    .quick-links {
        flex-direction: column;
    }

    .quick-link-btn {
        width: 100%;
        justify-content: center;
    }

    .pagination .nav-links {
        flex-wrap: wrap;
    }

    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .search-header-banner {
        padding: 40px 20px 30px;
    }

    .search-page-title {
        font-size: 24px;
    }

    .search-form-wrapper .search-form {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-form-wrapper .search-form button,
    .search-form-wrapper .search-form input[type="submit"] {
        width: 100%;
        border-radius: 10px;
    }

    .result-thumbnail {
        height: 180px;
    }

    .result-content {
        padding: 15px;
    }

    .result-title {
        font-size: 18px;
    }

    .read-more-btn {
        width: 100%;
        justify-content: center;
    }

    .no-results-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   Beautiful Sidebar Styles
   ========================================================================== */

.beautiful-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Widget Base Styles */
.beautiful-sidebar .widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beautiful-sidebar .widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cart-gradient-1), var(--cart-gradient-3), var(--cart-gradient-4));
}

.beautiful-sidebar .widget:hover {
    border-color: var(--cart-gradient-1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

/* Widget Titles */
.beautiful-sidebar .widget .widget-title,
.beautiful-sidebar .widget h2,
.beautiful-sidebar .widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.beautiful-sidebar .widget .widget-title::after,
.beautiful-sidebar .widget h2::after,
.beautiful-sidebar .widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--cart-gradient-1), var(--cart-gradient-3));
    border-radius: 2px;
}

/* Widget Lists */
.beautiful-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.beautiful-sidebar .widget ul li {
    padding: 12px 0;
    padding-left: 25px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    transition: all 0.3s ease;
}

.beautiful-sidebar .widget ul li:last-child {
    border-bottom: none;
}

.beautiful-sidebar .widget ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.beautiful-sidebar .widget ul li:hover {
    padding-left: 30px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    margin: 0 -10px;
    padding-left: 35px;
    padding-right: 10px;
    border-radius: 8px;
}

.beautiful-sidebar .widget ul li:hover::before {
    width: 10px;
    height: 10px;
}

.beautiful-sidebar .widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.beautiful-sidebar .widget ul li:hover a {
    color: var(--cart-gradient-1);
    font-weight: 500;
}

/* Search Widget */
.beautiful-sidebar .widget_search form {
    display: flex;
    gap: 10px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    padding: 8px;
    border-radius: 50px;
}

.beautiful-sidebar .widget_search input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.beautiful-sidebar .widget_search input[type="search"]:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.beautiful-sidebar .widget_search button,
.beautiful-sidebar .widget_search input[type="submit"] {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.beautiful-sidebar .widget_search button:hover,
.beautiful-sidebar .widget_search input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Recent Posts Widget */
.beautiful-sidebar .widget_recent_entries ul li::before {
    content: '📝';
    width: auto;
    height: auto;
    background: none;
}

.beautiful-sidebar .widget_recent_entries .post-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Categories Widget */
.beautiful-sidebar .widget_categories ul li::before {
    content: '📁';
    width: auto;
    height: auto;
    background: none;
}

.beautiful-sidebar .widget_categories .count {
    float: right;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Tag Cloud Widget */
.beautiful-sidebar .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.beautiful-sidebar .tagcloud a {
    padding: 8px 16px;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    color: var(--cart-gradient-1);
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.beautiful-sidebar .tagcloud a:hover {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Calendar Widget */
.beautiful-sidebar .widget_calendar table {
    width: 100%;
    border-collapse: collapse;
}

.beautiful-sidebar .widget_calendar caption {
    font-weight: 600;
    padding: 10px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.beautiful-sidebar .widget_calendar th {
    padding: 10px 5px;
    text-align: center;
    font-weight: 600;
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    font-size: 12px;
}

.beautiful-sidebar .widget_calendar td {
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.beautiful-sidebar .widget_calendar td a {
    display: block;
    color: var(--cart-gradient-1);
    font-weight: 600;
}

.beautiful-sidebar .widget_calendar td:hover {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
}

.beautiful-sidebar .widget_calendar td:hover a {
    color: white;
}

/* Text Widget */
.beautiful-sidebar .widget_text .textwidget {
    line-height: 1.8;
    color: #666;
}

.beautiful-sidebar .widget_text .textwidget p {
    margin-bottom: 15px;
}

/* RSS Widget */
.beautiful-sidebar .widget_rss ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.beautiful-sidebar .widget_rss ul li::before {
    content: '📡';
    width: auto;
    height: auto;
    background: none;
}

.beautiful-sidebar .widget_rss .rss-date,
.beautiful-sidebar .widget_rss .rssSummary {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.beautiful-sidebar .widget_rss cite {
    font-style: normal;
    font-weight: 600;
    color: var(--cart-gradient-1);
}

/* Archive Widget */
.beautiful-sidebar .widget_archive ul li::before {
    content: '📅';
    width: auto;
    height: auto;
    background: none;
}

/* Meta Widget */
.beautiful-sidebar .widget_meta ul li::before {
    content: '🔗';
    width: auto;
    height: auto;
    background: none;
}

/* Pages Widget */
.beautiful-sidebar .widget_pages ul li::before {
    content: '📄';
    width: auto;
    height: auto;
    background: none;
}

/* Custom Menu Widget */
.beautiful-sidebar .widget_nav_menu ul li::before {
    content: '▸';
    width: auto;
    height: auto;
    background: none;
    color: var(--cart-gradient-1);
    font-weight: bold;
}

/* WooCommerce Widgets */
.beautiful-sidebar .woocommerce .product_list_widget li {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
}

.beautiful-sidebar .woocommerce .product_list_widget li::before {
    display: none;
}

.beautiful-sidebar .woocommerce .product_list_widget img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.beautiful-sidebar .woocommerce .product_list_widget .product-title {
    font-weight: 600;
    color: var(--text-color);
}

.beautiful-sidebar .woocommerce .product_list_widget .amount {
    color: var(--cart-accent-pink);
    font-weight: 700;
}

/* Price Filter Widget */
.beautiful-sidebar .widget_price_filter .price_slider_wrapper {
    padding: 20px 10px;
}

.beautiful-sidebar .widget_price_filter .ui-slider {
    background: #f0f0f0;
    border-radius: 10px;
    height: 8px;
    border: none;
    position: relative;
}

.beautiful-sidebar .widget_price_filter .ui-slider-range {
    background: linear-gradient(90deg, var(--cart-gradient-1), var(--cart-gradient-2));
    border-radius: 10px;
}

.beautiful-sidebar .widget_price_filter .ui-slider-handle {
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--cart-gradient-1);
    border-radius: 50%;
    cursor: pointer;
    top: -6px;
}

.beautiful-sidebar .widget_price_filter button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beautiful-sidebar .widget_price_filter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

/* Product Categories Widget */
.beautiful-sidebar .product-categories li::before {
    content: '🏷️';
    width: auto;
    height: auto;
    background: none;
}

/* Responsive Sidebar */
@media (max-width: 1024px) {
    .beautiful-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .beautiful-sidebar .widget {
        padding: 20px;
    }

    .sidebar-inner {
        gap: 20px;
    }

    .beautiful-sidebar .widget .widget-title,
    .beautiful-sidebar .widget h2,
    .beautiful-sidebar .widget h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .beautiful-sidebar .widget {
        padding: 15px;
        border-radius: 15px;
    }

    .beautiful-sidebar .widget .widget-title,
    .beautiful-sidebar .widget h2,
    .beautiful-sidebar .widget h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .beautiful-sidebar .widget ul li {
        padding: 10px 0 10px 20px;
    }
}

/* ==========================================================================
   Beautiful Shop Page Styles
   ========================================================================== */

.beautiful-shop-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Shop Header Banner */
.shop-header-banner {
    background: linear-gradient(135deg, var(--cart-gradient-1) 0%, var(--cart-gradient-2) 100%);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
}

.shop-header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shop-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.shop-icon-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.shop-icon-wrapper .shop-icon {
    width: 80px;
    height: 80px;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.shop-page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.6s ease-out;
}

.shop-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Shop Controls Bar */
.shop-controls-bar {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    margin: 0 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.shop-controls-bar:hover {
    border-color: var(--cart-gradient-1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
}

.shop-controls-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* WooCommerce Result Count */
.woocommerce-result-count {
    font-weight: 600;
    color: var(--text-color);
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
}

/* WooCommerce Ordering */
.woocommerce-ordering {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-ordering select {
    padding: 12px 40px 12px 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--cart-gradient-1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Products Grid Section */
.shop-products-section {
    padding: 0 20px 40px;
}

/* Enhanced Product Grid */
.beautiful-shop-wrapper .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--cart-gradient-1), var(--cart-gradient-3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: var(--cart-gradient-1);
}

.beautiful-shop-wrapper .woocommerce ul.products li.product:hover::before {
    opacity: 1;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Product Content Area */
.beautiful-shop-wrapper .woocommerce ul.products li.product > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: var(--text-color);
    line-height: 1.4;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .price {
    font-size: 24px;
    font-weight: 700;
    margin: 0 20px 20px;
    background: linear-gradient(135deg, var(--cart-accent-pink), var(--cart-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .price del {
    opacity: 0.5;
    font-size: 18px;
    margin-right: 10px;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

/* Add to Cart Button */
.beautiful-shop-wrapper .woocommerce ul.products li.product .button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .added_to_cart {
    display: block;
    width: calc(100% - 40px);
    margin: 10px 20px 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--cart-success-green), var(--cart-accent-blue));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.beautiful-shop-wrapper .woocommerce ul.products li.product .added_to_cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 202, 190, 0.4);
    color: white;
}

/* Sale Badge */
.beautiful-shop-wrapper .woocommerce span.onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--cart-accent-orange), var(--cart-accent-pink));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
    z-index: 10;
}

/* Star Ratings */
.beautiful-shop-wrapper .woocommerce ul.products li.product .star-rating {
    margin: 0 20px 15px;
}

.beautiful-shop-wrapper .woocommerce .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: 'star';
}

.beautiful-shop-wrapper .woocommerce .star-rating::before {
    content: '★★★★★';
    color: #ddd;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.beautiful-shop-wrapper .woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.beautiful-shop-wrapper .woocommerce .star-rating span::before {
    content: '★★★★★';
    top: 0;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, var(--cart-accent-orange), var(--cart-accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pagination */
.shop-pagination-wrapper {
    padding: 40px 20px;
    text-align: center;
}

.beautiful-shop-wrapper .woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.beautiful-shop-wrapper .woocommerce-pagination ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.beautiful-shop-wrapper .woocommerce-pagination ul li {
    margin: 0;
}

.beautiful-shop-wrapper .woocommerce-pagination ul li a,
.beautiful-shop-wrapper .woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--cart-gradient-1);
    text-decoration: none;
}

.beautiful-shop-wrapper .woocommerce-pagination ul li a:hover {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.beautiful-shop-wrapper .woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* No Products Content */
.no-products-content {
    text-align: center;
    padding: 80px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.no-products-icon {
    margin-bottom: 40px;
}

.no-products-icon svg {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.2));
    animation: noProductFloat 3s ease-in-out infinite;
}

@keyframes noProductFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.no-products-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.no-products-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.no-products-suggestions {
    background: linear-gradient(135deg, #f6f9fc 0%, #f0f4ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.no-products-suggestions h3 {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.no-products-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-products-suggestions li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.no-products-suggestions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cart-gradient-1);
    font-weight: bold;
    font-size: 18px;
}

.no-products-actions {
    margin-top: 30px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--cart-gradient-1), var(--cart-gradient-2));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.back-home-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Shop Page */
@media (max-width: 768px) {
    .shop-header-banner {
        padding: 60px 25px 40px;
        border-radius: 0 0 20px 20px;
    }

    .shop-page-title {
        font-size: 32px;
    }

    .shop-subtitle {
        font-size: 16px;
    }

    .shop-icon-wrapper .shop-icon {
        width: 60px;
        height: 60px;
    }

    .shop-controls-bar {
        padding: 20px;
        margin: 0 10px 30px;
    }

    .shop-controls-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-result-count {
        text-align: center;
    }

    .woocommerce-ordering {
        width: 100%;
    }

    .woocommerce-ordering select {
        width: 100%;
    }

    .beautiful-shop-wrapper .woocommerce ul.products {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products li.product img {
        height: 280px;
    }

    .no-products-icon svg {
        width: 120px;
        height: 120px;
    }

    .no-products-title {
        font-size: 28px;
    }

    .no-products-suggestions {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .shop-header-banner {
        padding: 40px 20px 30px;
    }

    .shop-page-title {
        font-size: 26px;
    }

    .shop-subtitle {
        font-size: 14px;
    }

    .shop-controls-bar {
        padding: 15px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products li.product img {
        height: 250px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 16px;
        margin: 15px 15px 10px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products li.product .price {
        font-size: 20px;
        margin: 0 15px 15px;
    }

    .beautiful-shop-wrapper .woocommerce ul.products li.product .button,
    .beautiful-shop-wrapper .woocommerce ul.products li.product .added_to_cart {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .no-products-title {
        font-size: 24px;
    }

    .back-home-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
#main-content > div > section.latest-products-section.mt-50.mb-50 > div > div > ul > li {
    padding-bottom: 25px;
}
#main > ul > li.product.type-product {
    padding-bottom: 25px;
}
