/**
Theme Name: temaaf
Author: AF Project Carpi
Author URI: https://afproject.eu/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
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: temaaf
Template: astra
*/

 /* VARIABILI STILE CICLISTIAMO - Brand kit 2026 */
        :root {
            --primary: #f47c20;        /* Arancio - CTA, accenti, pin */
            --primary-dark: #c45e10;   /* Arancio scuro - hover */
            --secondary: #1a2e4a;      /* Notte - elementi secondari, badge, header */
            --secondary-dark: #11203a; /* Notte (hover, piu scuro) */
            --danger: #c0392b;         /* Rosso funzionale - errori/rimozioni */
            --danger-dark: #a53125;
            --text: #444441;
            --text-light: #888780;
            --light: #ffffff;
            --dark: #1a2e4a;           /* Notte - testi, header, simbolo */
            --accent: #d6e4f0;         /* Cielo - sfondi sezione, card */
            --border: #d3d1c7;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
            --radius: 8px;
            --transition: all 0.3s ease;
            --business-gradient: linear-gradient(135deg, #1a2e4a 0%, #2a4a70 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark);
        }

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

        /* HEADER */
        .site-header {
            background: var(--light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

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

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--dark);
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-main a {
            color: var(--text);
            text-decoration: none;
            margin: 0 15px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-main a:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 10px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: var(--secondary);
            color: var(--light);
        }

        .btn-secondary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        /* HERO SECTION */
        .pricing-hero {
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                        url('https://images.unsplash.com/photo-1511994717241-8e4e484dfa8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--light);
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--light);
        }

        .hero-content p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        /* PRICING PLANS */
        .pricing-section {
            padding: 80px 0;
            background: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 17px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .pricing-card {
            background: var(--light);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            border: 2px solid var(--border);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(244, 124, 32, 0.15);
        }

        .pricing-card.popular {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: var(--light);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            z-index: 2;
        }

        .pricing-header {
            padding: 40px 30px;
            text-align: center;
            background: var(--accent);
            border-bottom: 2px solid var(--border);
        }

        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .price-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 5px;
        }

        .price-period {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 15px;
        }

        .price-saving {
            background: rgba(244, 124, 32, 0.1);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
        }

        .pricing-features {
            padding: 30px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list i {
            color: var(--primary);
            font-size: 16px;
            width: 20px;
        }

        .feature-list .included {
            color: var(--text);
        }

        .feature-list .not-included {
            color: var(--text-light);
            opacity: 0.5;
        }

        .pricing-actions {
            padding: 0 30px 30px;
            text-align: center;
        }

        .btn-choose-plan {
            width: 100%;
            justify-content: center;
        }

        /* BUSINESS PLANS */
        .business-plans {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }

        .business-card {
            background: var(--business-gradient);
            color: var(--light);
            border: none;
        }

        .business-card .pricing-header {
            background: rgba(255,255,255,0.1);
            border-bottom: 2px solid rgba(255,255,255,0.2);
        }

        .business-card h3,
        .business-card .price-amount {
            color: var(--light);
        }

        .business-card .feature-list li {
            color: rgba(255,255,255,0.9);
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .business-card .feature-list i {
            color: var(--light);
        }

        /* COMPARISON TABLE */
        .comparison-section {
            padding: 80px 0;
            background: var(--light);
        }

        .comparison-table {
            overflow-x: auto;
            margin-top: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        .comparison-table th {
            background: var(--accent);
            padding: 20px;
            text-align: center;
            font-weight: 600;
            color: var(--dark);
            border-bottom: 2px solid var(--border);
        }

        .comparison-table th.popular-column {
            background: var(--primary);
            color: var(--light);
        }

        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .comparison-table tr:hover {
            background: var(--accent);
        }

        .feature-name {
            text-align: left !important;
            font-weight: 600;
            color: var(--dark);
        }

        .check-cell {
            color: var(--primary);
            font-size: 20px;
        }

        .x-cell {
            color: var(--text-light);
            opacity: 0.3;
        }

        /* TESTIMONIALS */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 20px;
        }

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* FAQ */
        .faq-section {
            padding: 80px 0;
            background: var(--light);
        }

        .faq-grid {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: var(--accent);
            border-radius: var(--radius);
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--dark);
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(244, 124, 32, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--text);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        /* CTA SECTION */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95)), 
                        url('https://images.unsplash.com/photo-1517649763962-0c623066013b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--light);
            text-align: center;
        }

        .cta-content h2 {
            font-size: 38px;
            margin-bottom: 20px;
            color: var(--light);
        }

        .cta-content p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FOOTER */
        .site-footer {
            background: var(--dark);
            color: var(--light);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0b0;
            font-size: 14px;
        }

        /* WOOCOMMERCE SPECIFIC */
        .woocommerce-message {
            background: rgba(244, 124, 32, 0.1);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .pricing-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .pricing-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .price-amount {
                font-size: 36px;
            }
        }
		
		
		
        /* CART SECTION */
        .cart-section {
            padding: 60px 0;
            min-height: 60vh;
        }

        .cart-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: flex-start;
        }

        /* CART ITEMS */
        .cart-items {
            background: var(--light);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .cart-header {
            padding: 25px 30px;
            background: var(--accent);
            border-bottom: 2px solid var(--border);
        }

        .cart-header h1 {
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cart-header h1 i {
            color: var(--primary);
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
        }

        .cart-table thead {
            background: var(--accent);
        }

        .cart-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            color: var(--dark);
            border-bottom: 2px solid var(--border);
            font-family: 'Montserrat', sans-serif;
        }

        .cart-table td {
            padding: 25px 20px;
            border-bottom: 1px solid var(--border);
            vertical-align: top;
        }

        .cart-item {
            transition: var(--transition);
        }

        .cart-item:hover {
            background: rgba(244, 124, 32, 0.03);
        }

        .product-info {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .product-image {
            width: 100px;
            height: 100px;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-details h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .product-details p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 5px;
        }

        .product-plan {
            display: inline-block;
            background: rgba(244, 124, 32, 0.1);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 5px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 36px;
            height: 36px;
            border: 1px solid var(--border);
            background: var(--light);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .quantity-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .quantity-input {
            width: 60px;
            height: 36px;
            border: 1px solid var(--border);
            border-radius: 4px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .subtotal {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
        }

        .remove-btn {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 18px;
            transition: var(--transition);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .remove-btn:hover {
            background: rgba(192, 57, 43, 0.1);
            color: var(--danger);
        }

        /* CART ACTIONS */
        .cart-actions {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--accent);
            border-top: 1px solid var(--border);
        }

        .coupon-section {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .coupon-input {
            padding: 12px 15px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            min-width: 200px;
            font-family: 'Open Sans', sans-serif;
        }

        .coupon-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* CART SUMMARY */
        .cart-summary {
            background: var(--light);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            position: sticky;
            top: 100px;
        }

        .summary-header {
            padding-bottom: 20px;
            border-bottom: 2px solid var(--border);
            margin-bottom: 25px;
        }

        .summary-header h2 {
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .summary-header h2 i {
            color: var(--primary);
        }

        .summary-details {
            margin-bottom: 30px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .summary-row.total {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            border-bottom: none;
            padding-top: 20px;
            border-top: 2px solid var(--border);
        }

        .summary-row.savings {
            color: var(--primary);
            font-weight: 600;
        }

        .free-trial-notice {
            background: rgba(244, 124, 32, 0.1);
            border: 1px solid var(--primary);
            border-radius: var(--radius);
            padding: 15px;
            margin-bottom: 25px;
            text-align: center;
        }

        .free-trial-notice i {
            color: var(--primary);
            margin-right: 8px;
        }

        .checkout-btn {
            width: 100%;
            justify-content: center;
            padding: 18px;
            font-size: 17px;
            margin-bottom: 20px;
        }

        .secure-payment {
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
            margin-top: 20px;
        }

        .secure-payment i {
            color: var(--primary);
            margin-right: 8px;
        }

        /* EMPTY CART */
        .empty-cart {
            text-align: center;
            padding: 80px 20px;
            background: var(--light);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .empty-cart-icon {
            font-size: 80px;
            color: var(--border);
            margin-bottom: 30px;
        }

        .empty-cart h2 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .empty-cart p {
            color: var(--text-light);
            font-size: 17px;
            max-width: 500px;
            margin: 0 auto 30px;
        }

        /* UPSELL PRODUCTS */
        .upsell-products {
            margin-top: 60px;
        }

        .upsell-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .upsell-header h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .upsell-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .upsell-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .upsell-card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .upsell-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .upsell-card.popular {
            border-color: var(--primary);
        }

        .upsell-badge {
            background: var(--secondary);
            color: var(--light);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .upsell-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .upsell-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .upsell-price span {
            font-size: 16px;
            color: var(--text-light);
            font-weight: normal;
        }

        .upsell-features {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
        }

        .upsell-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            color: var(--text);
            font-size: 14px;
        }

        .upsell-features li:last-child {
            border-bottom: none;
        }

        .upsell-features i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* FOOTER */
        .site-footer {
            background: var(--dark);
            color: var(--light);
            padding: 70px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0b0;
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .cart-container {
                grid-template-columns: 1fr;
            }
            
            .upsell-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cart-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 768px) {
            .cart-actions {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
            
            .coupon-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .coupon-input {
                min-width: auto;
            }
            
            .product-info {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .product-image {
                width: 80px;
                height: 80px;
            }
            
            .upsell-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .nav-main {
                order: 3;
                width: 100%;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .cart-table th,
            .cart-table td {
                padding: 15px 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* WOOCOMMERCE SPECIFIC */
        .woocommerce-message {
            background: rgba(244, 124, 32, 0.1);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .woocommerce-message i {
            color: var(--primary);
            font-size: 20px;
        }

        .woocommerce-error {
            background: rgba(192, 57, 43, 0.1);
            border: 2px solid var(--danger);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px 0;
        }
		
		  /* HEADER */
        .site-header {
            background: var(--light);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

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

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--dark);
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-main a {
            color: var(--text);
            text-decoration: none;
            margin: 0 15px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-main a:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .cart-icon {
            position: relative;
            text-decoration: none;
            color: var(--text);
            font-size: 20px;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--secondary);
            color: var(--light);
            font-size: 12px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 10px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: var(--secondary);
            color: var(--light);
        }

        .btn-secondary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--light);
        }

        /* BREADCRUMB */
        .breadcrumb {
            padding: 20px 0;
            background: var(--accent);
            border-bottom: 1px solid var(--border);
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 14px;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }