:root { --primary-color: #59C378; --secondary-color: #4AB068; --dark-bg: #1a1a2e; --darker-bg: #16162a; --card-bg: #232340; --text-light: #E0E0E0; --text-white: #ffffff; } body { background-color: var(--dark-bg); min-height: 100vh; display: flex; flex-direction: column; } .page-wrapper { flex-grow: 1; display: flex; flex-direction: column; overflow-x: hidden; max-width: 100%; } main { flex-grow: 1; overflow-x: hidden; max-width: 100%; } .top-bar { position: relative; z-index: 1001; } .wpo-header-style-1 { position: relative; z-index: 1000; } .wpo-site-header { background: var(--darker-bg); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .navbar-brand { font-family: "Futura PT", "Segoe UI", sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--text-white) !important; display: flex; align-items: center; gap: 12px; text-decoration: none; letter-spacing: 0.02em; transition: color 0.25s ease; } .navbar-brand .brand-text { color: inherit; white-space: nowrap; transition: color 0.25s ease; } .navbar-brand:hover { color: var(--primary-color) !important; } .navbar-brand img { height: 40px; width: auto; flex-shrink: 0; } .brand-logo-full { height: 38px; width: auto; filter: brightness(1); transition: filter 0.3s; mix-blend-mode: lighten; } .brand-logo-icon { height: 38px; width: auto; object-fit: contain; filter: brightness(1); transition: filter 0.3s; mix-blend-mode: lighten; } .brand-logo-mobile { height: 32px; width: auto; max-width: 130px; object-fit: contain; filter: brightness(1); transition: filter 0.3s; mix-blend-mode: lighten; } .navbar-brand:hover .brand-logo-full, .navbar-brand:hover .brand-logo-icon, .navbar-brand:hover .brand-logo-mobile { filter: brightness(1.15); } .footer-logo-img, .loading-logo, .brand-badge-logo, .newsletter-watermark { mix-blend-mode: lighten; } .nav-link { color: var(--text-light) !important; font-weight: 500; padding: 10px 20px !important; transition: all 0.3s; font-size: 15px; } .nav-link:hover, .nav-link.active { color: var(--primary-color) !important; } .cart-btn { background: var(--primary-color); color: var(--text-white); padding: 12px 25px; border-radius: 30px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: all 0.3s; border: none; text-decoration: none; } .cart-btn:hover { background: var(--secondary-color); color: var(--text-white); transform: translateY(-2px); } .cart-badge { background: #ff4757; color: white; border-radius: 50%; min-width: 22px; height: 22px; font-size: 12px; display: flex; align-items: center; justify-content: center; margin-left: 5px; } .product-card { background: var(--card-bg); border-radius: 15px; overflow: hidden; transition: all 0.3s ease; height: 100%; border: 1px solid rgba(255,255,255,0.05); } .product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: var(--primary-color); } .product-card-img { height: 220px; overflow: hidden; position: relative; } .product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .product-card:hover .product-card-img img { transform: scale(1.1); } .product-card-body { padding: 20px; } .product-category { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: white; font-size: 12px; padding: 5px 15px; border-radius: 20px; font-weight: 600; display: inline-block; margin-bottom: 10px; } .product-title { color: var(--text-white); font-size: 18px; font-weight: 600; margin-bottom: 10px; font-family: "Futura PT", sans-serif; } .product-description { color: var(--text-light); font-size: 14px; margin-bottom: 15px; line-height: 1.6; } .product-price { font-size: 24px; font-weight: 700; color: var(--primary-color); font-family: "Futura PT", sans-serif; } .stock-badge { font-size: 13px; padding: 5px 12px; border-radius: 20px; font-weight: 500; } .stock-badge.in-stock { background: rgba(89, 195, 120, 0.2); color: var(--primary-color); } .stock-badge.low-stock { background: rgba(255, 193, 7, 0.2); color: #ffc107; } .stock-badge.out-of-stock { background: rgba(255, 71, 87, 0.2); color: #ff4757; } .btn-shop { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 10px 20px; border-radius: 30px; font-weight: 600; transition: all 0.3s; width: 100%; margin-top: 10px; } .btn-shop:hover { background: var(--primary-color); color: var(--text-white); } .btn-shop-primary { background: var(--primary-color); border: 2px solid var(--primary-color); color: var(--text-white); } .btn-shop-primary:hover { background: var(--secondary-color); border-color: var(--secondary-color); color: var(--text-white); } .shop-hero { background: linear-gradient(135deg, var(--darker-bg), var(--card-bg)); padding: 60px 0; position: relative; overflow: hidden; } .shop-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(89, 195, 120, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; } .shop-hero h1 { font-family: "Futura PT", sans-serif; font-size: 48px; font-weight: 700; color: var(--text-white); margin-bottom: 15px; } .shop-hero p { color: var(--text-light); font-size: 18px; } @media (max-width: 767px) { .shop-hero h1 { font-size: 32px; } .shop-hero p { font-size: 16px; } } .search-box { position: relative; max-width: 400px; } .search-box input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; padding: 15px 25px; padding-right: 50px; color: var(--text-white); width: 100%; transition: all 0.3s; } .search-box input::placeholder { color: var(--text-light); } .search-box input:focus { background: rgba(255,255,255,0.15); border-color: var(--primary-color); outline: none; box-shadow: 0 0 20px rgba(89, 195, 120, 0.2); } .search-box button { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); background: var(--primary-color); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s; } .search-box button:hover { background: var(--secondary-color); } .filter-card { background: var(--card-bg); border-radius: 15px; padding: 25px; border: 1px solid rgba(255,255,255,0.05); } .filter-card.sticky-top { z-index: 10; } .filter-card.filters-sticky { top: 120px; } .filter-card h5 { color: var(--text-white); font-family: "Futura PT", sans-serif; margin-bottom: 20px; } .filter-card .form-label { color: var(--text-light); font-weight: 500; margin-bottom: 8px; } .filter-card .form-select, .filter-card .form-control { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-white); border-radius: 10px; padding: 12px 15px; } .filter-card .form-select:focus, .filter-card .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(89, 195, 120, 0.1); color: var(--text-white); } .filter-card .form-select option { background: var(--darker-bg); color: var(--text-white); } .wpo-page-title { background: linear-gradient(135deg, var(--darker-bg), var(--card-bg)); padding: 80px 0; text-align: center; position: relative; } .wpo-page-title::before { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(89, 195, 120, 0.1) 0%, transparent 60%); border-radius: 50%; pointer-events: none; } .wpo-page-title h2 { color: var(--text-white); font-family: "Futura PT", sans-serif; font-size: 42px; font-weight: 700; margin-bottom: 10px; } .breadcrumb { background: transparent; margin: 0; padding: 0; justify-content: center; } .breadcrumb-item { color: var(--text-light); } .breadcrumb-item a { color: var(--primary-color); text-decoration: none; } .breadcrumb-item a:hover { color: var(--secondary-color); } .breadcrumb-item.active { color: var(--text-light); } .breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); } .dark-card { background: var(--card-bg); border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); padding: 25px; } .dark-card h5 { color: var(--text-white); font-family: "Futura PT", sans-serif; } .legal-content { padding: 40px; } .legal-content .legal-updated { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); } .legal-section { margin-bottom: 30px; } .legal-section h3 { color: var(--text-white); font-family: "Futura PT", sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 15px; padding-left: 15px; border-left: 3px solid var(--primary-color); } .legal-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 12px; } .legal-section ul { list-style: none; padding: 0; margin: 0 0 15px 0; } .legal-section ul li { color: var(--text-light); padding: 8px 0 8px 25px; position: relative; line-height: 1.7; } .legal-section ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: var(--primary-color); border-radius: 50%; } .legal-section a { color: var(--primary-color); text-decoration: none; transition: all 0.3s; } .legal-section a:hover { color: var(--secondary-color); text-decoration: underline; } .legal-contact { background: rgba(89, 195, 120, 0.08); border: 1px solid rgba(89, 195, 120, 0.15); border-radius: 12px; padding: 20px 25px; margin-top: 10px; } .legal-contact p { margin-bottom: 0; } .legal-contact i { color: var(--primary-color); } @media (max-width: 768px) { .legal-content { padding: 25px 20px; } .legal-section h3 { font-size: 18px; } } .dark-form .form-label { color: var(--text-light); } .dark-form .form-control { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--text-white); border-radius: 10px; padding: 12px 15px; } .dark-form .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(89, 195, 120, 0.1); color: var(--text-white); } .dark-form .form-control::placeholder { color: rgba(255,255,255,0.4); } .dark-table { color: var(--text-light); } .dark-table thead th { color: var(--text-white); border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 600; } .dark-table tbody td { border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; } .wpo-site-footer { background: var(--darker-bg); border-top: 1px solid rgba(255,255,255,0.1); } .footer-top { padding: 60px 0 40px; } .footer-widget { margin-bottom: 20px; } .footer-logo { margin-bottom: 20px; } .footer-logo a { display: inline-flex; align-items: center; gap: 10px; font-size: 28px; font-weight: 700; color: var(--text-white); text-decoration: none; } .footer-logo a i { color: var(--primary-color); font-size: 32px; } .footer-logo-img { height: 32px; width: auto; filter: brightness(0.9); transition: filter 0.3s; } .footer-logo a:hover .footer-logo-img { filter: brightness(1.1); } .footer-widget p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; } .footer-widget h4 { color: var(--text-white); font-size: 18px; font-weight: 600; margin-bottom: 25px; position: relative; padding-bottom: 12px; } .footer-widget h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--primary-color); } .footer-social { display: flex; gap: 12px; } .footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s; } .footer-social a:hover { background: var(--primary-color); color: white; transform: translateY(-3px); } .footer-links { list-style: none; padding: 0; margin: 0; } .footer-links li { margin-bottom: 12px; } .footer-links a { color: var(--text-light); text-decoration: none; transition: all 0.3s; display: inline-block; } .footer-links a:hover { color: var(--primary-color); padding-left: 5px; } .footer-contact { list-style: none; padding: 0; margin: 0; } .footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; color: var(--text-light); } .footer-contact li i { color: var(--primary-color); font-size: 18px; margin-top: 3px; } .footer-contact li a { color: var(--text-light); text-decoration: none; transition: color 0.3s; } .footer-contact li a:hover { color: var(--primary-color); } .payment-methods { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); } .payment-methods span { color: var(--text-light); font-size: 14px; } .payment-icons { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--text-white); } .footer-bottom { background: rgba(0,0,0,0.2); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); } .footer-bottom p { color: var(--text-light); font-size: 14px; } .footer-bottom-links { display: flex; align-items: center; justify-content: flex-end; gap: 15px; } .footer-bottom-links a { color: var(--text-light); text-decoration: none; font-size: 14px; transition: color 0.3s; } .footer-bottom-links a:hover { color: var(--primary-color); } .footer-bottom-links span { color: rgba(255,255,255,0.2); } @media (max-width: 767px) { .footer-top { padding: 30px 0 15px; } .footer-widget { margin-bottom: 15px; } .footer-widget h4 { margin-bottom: 14px; font-size: 15px; padding-bottom: 10px; } .footer-widget p { font-size: 13px; line-height: 1.7; margin-bottom: 15px; } .footer-logo a { font-size: 22px; } .footer-logo-img { height: 26px; } .footer-links li { margin-bottom: 8px; } .footer-links a { font-size: 13px; } .footer-contact li { margin-bottom: 10px; font-size: 13px; } .footer-social a { width: 36px; height: 36px; } .footer-bottom { padding: 15px 0; } .footer-bottom p { font-size: 12px; } .footer-bottom-links { justify-content: center; } .footer-bottom-links a { font-size: 12px; } .payment-methods { margin-top: 15px; padding-top: 15px; } } .wpo-site-footer .upper-footer { padding: 60px 0; } .wpo-site-footer .widget-title h3 { color: var(--text-white); font-family: "Futura PT", sans-serif; font-size: 20px; margin-bottom: 20px; } .wpo-site-footer p, .wpo-site-footer li { color: var(--text-light); } .wpo-site-footer a { color: var(--text-light); text-decoration: none; transition: all 0.3s; } .wpo-site-footer a:hover { color: var(--primary-color); } .wpo-site-footer .social-icons ul { display: flex; gap: 10px; list-style: none; padding: 0; margin-top: 15px; } .wpo-site-footer .social-icons li a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-white); transition: all 0.3s; } .wpo-site-footer .social-icons li a:hover { background: var(--primary-color); color: var(--text-white); } .wpo-site-footer .lower-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; } .wpo-site-footer .lower-footer p { margin: 0; color: var(--text-light); } .toast-container { z-index: 1100; } .toast { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.1); } .toast-header { background: var(--darker-bg); border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-white); } .toast-body { color: var(--text-light); } .loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(26, 26, 46, 0.9); display: none; flex-direction: column; justify-content: center; align-items: center; gap: 20px; z-index: 2000; } .loading-logo { width: 60px; height: 60px; object-fit: contain; animation: loadingPulse 1.5s ease-in-out infinite; } @keyframes loadingPulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } } .loading-overlay.active { display: flex; } .loading-overlay .spinner-border { color: var(--primary-color); } .state-success { background: linear-gradient(135deg, rgba(89, 195, 120, 0.2), rgba(89, 195, 120, 0.1)); border: 1px solid var(--primary-color); } .state-error { background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1)); border: 1px solid #ff4757; } .state-warning { background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1)); border: 1px solid #ffc107; } .top-bar { background: var(--card-bg); padding: 10px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); } .top-bar-left span { color: var(--text-light); } .top-bar-left i { color: var(--primary-color); } .top-bar-right { text-align: right; } .top-bar-right a { color: var(--text-light); margin-left: 15px; transition: all 0.3s; } .top-bar-right a:hover { color: var(--primary-color); } .dropdown-menu { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 10px 0; min-width: 220px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); } .dropdown-item { color: var(--text-light); padding: 10px 20px; transition: all 0.3s; } .dropdown-item:hover { background: rgba(89, 195, 120, 0.1); color: var(--primary-color); } .dropdown-item i { color: var(--primary-color); } .dropdown-divider { border-color: rgba(255,255,255,0.1); } .header-actions-mobile { display: flex; align-items: center; gap: 15px; } .mobile-cart-btn { position: relative; color: var(--text-white); font-size: 22px; } .cart-badge-mobile { position: absolute; top: -8px; right: -10px; background: #ff4757; color: white; border-radius: 50%; min-width: 18px; height: 18px; font-size: 11px; display: flex; align-items: center; justify-content: center; } @media (max-width: 991px) { .navbar-collapse { background: var(--darker-bg); padding: 16px; border-radius: 14px; margin-top: 12px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 15px 40px rgba(0,0,0,0.4); } .navbar-collapse .nav-link { padding: 12px 16px !important; border-radius: 10px; font-size: 15px; } .navbar-collapse .nav-link:active { background: rgba(89,195,120,0.1); } .navbar-collapse .dropdown-item { padding: 12px 20px; border-radius: 8px; font-size: 14px; } .navbar-toggler { border-color: var(--primary-color); padding: 8px 12px; } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2889, 195, 120, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } .cart-btn { margin-top: 15px; justify-content: center; } .dropdown-menu { background: rgba(255,255,255,0.05); border: none; border-radius: 10px; margin-top: 10px; } .top-bar-right { text-align: center; } } @media (max-width: 767px) { .top-bar { display: none; } .wpo-site-header { padding: 10px 0; } .navbar-brand { gap: 8px; } .navbar-brand .brand-logo-mobile { height: 32px; width: auto; max-width: 140px; object-fit: contain; filter: brightness(1); mix-blend-mode: lighten; } .brand-logo-icon { height: 30px !important; width: 30px !important; } .header-actions-mobile { gap: 12px; } .mobile-cart-btn { font-size: 20px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: 10px; transition: background 0.3s; } .mobile-cart-btn:active { background: rgba(89,195,120,0.15); } .navbar-toggler { padding: 6px 10px; border-radius: 10px; background: rgba(255,255,255,0.06); border-color: transparent !important; } .navbar-toggler:active { background: rgba(89,195,120,0.15); } .navbar-toggler-icon { width: 22px; height: 22px; } .product-card-img { height: 180px; } .product-card-body { padding: 14px; } .product-title { font-size: 14px; margin-bottom: 6px; } .product-description { font-size: 12px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .product-price { font-size: 18px; } .product-category { font-size: 10px; padding: 3px 10px; margin-bottom: 6px; } .wpo-page-title { padding: 35px 0; } .wpo-page-title h2 { font-size: 24px; } .floating-cart-btn { bottom: 85px !important; right: 16px !important; width: 50px; height: 50px; font-size: 20px; } .container { padding-left: 16px; padding-right: 16px; } } @media (max-width: 480px) { .wpo-site-header { padding: 8px 0; } .product-card-img { height: 150px; } .product-card-body { padding: 12px; } .product-title { font-size: 13px; } .product-price { font-size: 16px; } .btn-shop { padding: 8px 16px; font-size: 13px; } } .floating-cart-btn { position: fixed !important; bottom: 90px !important; right: 30px !important; width: 60px; height: 60px; border-radius: 50%; background: var(--primary-color); color: white !important; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 25px rgba(89, 195, 120, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease; z-index: 1040 !important; text-decoration: none !important; } .floating-cart-btn:hover { background: var(--secondary-color); color: white !important; transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 35px rgba(89, 195, 120, 0.6); } .floating-cart-btn.visible { display: flex !important; } .floating-cart-btn.hidden-by-drawer, .floating-whatsapp-btn.hidden-by-drawer { opacity: 0 !important; pointer-events: none !important; transform: scale(0.7) !important; } .floating-cart-badge { position: absolute; top: -4px; right: -4px; background: #ff4757; color: white; border-radius: 50%; min-width: 22px; height: 22px; font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid var(--dark-bg); } @keyframes cartBounce { 0% { transform: scale(1); } 30% { transform: scale(1.35); } 60% { transform: scale(0.9); } 100% { transform: scale(1); } } .floating-cart-btn.bounce { animation: cartBounce 0.4s ease; } .pagination .page-link { background: var(--card-bg); border-color: rgba(255,255,255,0.1); color: var(--text-light); } .pagination .page-link:hover { background: var(--primary-color); border-color: var(--primary-color); color: var(--text-white); } .pagination .page-item.active .page-link { background: var(--primary-color); border-color: var(--primary-color); } .quantity-input { display: flex; align-items: center; gap: 10px; } .quantity-input button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: transparent; color: var(--text-white); cursor: pointer; transition: all 0.3s; } .quantity-input button:hover { background: var(--primary-color); border-color: var(--primary-color); } .quantity-input input { width: 60px; text-align: center; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; color: var(--text-white); padding: 8px; }