@import"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css";:root{--primary-color: #5e8b7e;--secondary-color: #a7c4bc;--accent-color: #dfbd69;--text-color: #2c3e50;--light-text: #7f8c8d;--background-color: #f9f7f1;--card-bg: #ffffff;--header-bg: rgba(255, 255, 255, .95);--footer-bg: #2c3e50;--footer-text: #ecf0f1;--important-color: #e74c3c;--success-color: #2ecc71;--warning-color: #f39c12;--border-radius: 8px;--box-shadow: 0 4px 12px rgba(0, 0, 0, .1);--main-font: "Noto Sans TC", sans-serif;--heading-font: "Noto Serif TC", serif}*{margin:0;padding:0;box-sizing:border-box}body{font-family:var(--main-font);color:var(--text-color);background-color:var(--background-color);line-height:1.6}h1,h2,h3,h4,h5,h6{font-family:var(--heading-font);font-weight:700;margin-bottom:1rem}a{text-decoration:none;color:var(--primary-color);transition:color .3s ease}a:hover{color:var(--accent-color)}ul{list-style:none}img{max-width:100%;height:auto}.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}.btn-primary,.btn-secondary,.btn-login{display:inline-block;padding:10px 25px;border-radius:var(--border-radius);font-weight:600;text-align:center;cursor:pointer;transition:all .3s ease;border:none;font-size:1rem}.btn-primary{background-color:var(--primary-color);color:#fff}.btn-primary:hover{background-color:#4a7164;box-shadow:0 4px 10px #5e8b7e4d}.btn-secondary{background-color:var(--secondary-color);color:var(--text-color)}.btn-secondary:hover{background-color:#95b2a9;box-shadow:0 4px 10px #a7c4bc4d}.btn-login{background-color:transparent;border:2px solid var(--primary-color);color:var(--primary-color)}.btn-login:hover{background-color:var(--primary-color);color:#fff}.header{position:fixed;top:0;left:0;width:100%;background-color:var(--header-bg);box-shadow:0 2px 10px #0000001a;z-index:1000;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.header-container{display:flex;justify-content:space-between;align-items:center;padding:15px 20px;max-width:1200px;margin:0 auto}.logo-img{height:40px;margin-right:10px}.logo h1{font-size:1.5rem;margin-bottom:0;color:var(--primary-color)}.main-nav ul{display:flex}.main-nav li{margin:0 15px}.main-nav a{color:var(--text-color);font-weight:500;position:relative;padding:5px 0}.main-nav a:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background-color:var(--accent-color);transition:width .3s ease}.main-nav a:hover:after,.main-nav a.active:after{width:100%}.user-menu{position:relative;display:flex;align-items:center;cursor:pointer}.user-avatar{width:35px;height:35px;border-radius:50%;margin-right:10px}.dropdown-menu{position:absolute;top:100%;right:0;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);width:180px;padding:10px 0;margin-top:10px;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s ease}.user-menu:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.dropdown-menu a{display:block;padding:10px 20px;color:var(--text-color)}.dropdown-menu a:hover{background-color:var(--background-color)}.hero-banner{height:600px;background-image:url(/images/hero-bg.webp);background-size:auto;background-position:center;background-repeat:no-repeat;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;margin-top:70px}.hero-content{max-width:800px;padding:0 20px}.hero-content h2{font-size:3rem;margin-bottom:20px;text-shadow:2px 2px 4px rgba(0,0,0,.8),-1px -1px 2px rgba(0,0,0,.5),1px -1px 2px rgba(0,0,0,.5),-1px 1px 2px rgba(0,0,0,.5);-webkit-text-stroke:1px rgba(0,0,0,.3);color:#fff}.hero-content p{font-size:1.3rem;margin-bottom:30px;line-height:1.6;text-shadow:2px 2px 4px rgba(0,0,0,.7),-1px -1px 2px rgba(0,0,0,.4),1px -1px 2px rgba(0,0,0,.4),-1px 1px 2px rgba(0,0,0,.4);-webkit-text-stroke:.5px rgba(0,0,0,.2);color:#fff}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px}.section-header h2{font-size:2rem;color:var(--primary-color);position:relative;padding-left:15px}.section-header h2:before{content:"";position:absolute;left:0;top:8px;height:70%;width:5px;background-color:var(--accent-color);border-radius:3px}.view-all{font-weight:600;display:flex;align-items:center}.view-all:after{content:"→";margin-left:5px;transition:margin-left .3s ease}.view-all:hover:after{margin-left:10px}.card{background-color:var(--card-bg);border-radius:var(--border-radius);box-shadow:var(--box-shadow);overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}.card:hover{transform:translateY(-5px);box-shadow:0 12px 20px #00000026}.card-title{font-size:1.2rem;margin-bottom:10px}.card-content{padding:20px}.announcement-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:30px}.announcement-card{position:relative;padding:20px;border-top:4px solid var(--secondary-color)}.announcement-card.important{border-top-color:var(--important-color)}.card-tag{display:inline-block;padding:5px 10px;border-radius:4px;font-size:.8rem;font-weight:600;margin-bottom:15px;background-color:var(--secondary-color);color:#fff}.card-tag.important{background-color:var(--important-color)}.card-date{font-size:.9rem;color:var(--light-text);margin-bottom:10px}.card-excerpt{margin-bottom:15px;color:var(--light-text);display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.read-more{font-weight:600;font-size:.9rem}.event-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:30px}.event-card{display:flex;flex-direction:column}.card-date-badge{position:absolute;top:15px;left:15px;background-color:var(--accent-color);color:#fff;border-radius:6px;padding:5px 10px;text-align:center;box-shadow:0 2px 8px #0003}.card-date-badge .month{display:block;font-size:.9rem;font-weight:600}.card-date-badge .day{display:block;font-size:1.3rem;font-weight:700;line-height:1}.card-info{display:flex;margin-bottom:15px}.info-item{display:flex;align-items:center;margin-right:20px;color:var(--light-text);font-size:.9rem}.info-item i{margin-right:5px}.card-footer{display:flex;justify-content:space-between;align-items:center;margin-top:15px;padding-top:15px;border-top:1px solid #eee}.spots-left{font-size:.9rem;color:var(--important-color);font-weight:600}.product-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:30px}.product-card .card-image{height:220px;position:relative}.new-tag,.discount-tag{position:absolute;padding:5px 10px;font-size:.8rem;font-weight:600;border-radius:4px;color:#fff}.new-tag{background-color:var(--accent-color);top:10px;left:10px}.discount-tag{background-color:var(--important-color);top:10px;right:10px}.price-info{display:flex;align-items:center;margin-bottom:15px}.current-price{font-size:1.3rem;font-weight:700;color:var(--important-color);margin-right:10px}.original-price{color:var(--light-text);text-decoration:line-through;font-size:.9rem}.progress-bar{width:100%;height:8px;background-color:#e0e0e0;border-radius:4px;overflow:hidden;margin-bottom:10px}.progress{height:100%;background-color:var(--success-color);border-radius:4px}.progress-info{display:flex;justify-content:space-between;font-size:.9rem;color:var(--light-text);margin-bottom:15px}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:15px}.gallery-item{position:relative;height:200px;overflow:hidden;border-radius:var(--border-radius)}.gallery-item img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .4s ease}.gallery-item:hover img{transform:scale(1.05)}.gallery-item .overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(to top,rgba(0,0,0,.8),transparent);padding:20px;color:#fff;opacity:0;transition:opacity .3s ease}.gallery-item:hover .overlay{opacity:1}.overlay p{font-weight:600;margin-bottom:5px}.overlay span{font-size:.9rem;opacity:.8}.join-us{background-color:var(--primary-color);color:#fff;padding:80px 0;text-align:center}.join-content{max-width:800px;margin:0 auto}.join-us h2{font-size:2.5rem;margin-bottom:20px;color:#fff}.join-us p{font-size:1.2rem;margin-bottom:30px;opacity:.9}.benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin:30px 0;text-align:left}.benefits li{padding-left:30px;position:relative;font-size:1.1rem}.benefits li:before{content:"✓";position:absolute;left:0;color:var(--accent-color);font-weight:700}.join-us .btn-primary{background-color:var(--accent-color);color:var(--text-color);font-size:1.1rem;padding:12px 30px;margin-top:20px}.join-us .btn-primary:hover{background-color:#c9aa5e}.footer{background-color:var(--footer-bg);color:var(--footer-text);padding:60px 0 30px}.footer-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px}.footer h3{color:#fff;margin-bottom:20px;font-size:1.3rem}.footer-column p{opacity:.8;line-height:1.7}.footer-column ul li{margin-bottom:15px;display:flex;align-items:center}.footer-column ul li i{margin-right:10px;color:var(--accent-color)}.social-links{display:flex;gap:15px}.social-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background-color:#ffffff1a;border-radius:50%;color:#fff;transition:all .3s ease}.social-link:hover{background-color:var(--accent-color);color:var(--text-color);transform:translateY(-3px)}.copyright{text-align:center;padding-top:30px;border-top:1px solid rgba(255,255,255,.1);opacity:.6;font-size:.9rem}@media (max-width: 1024px){.hero-content h2{font-size:2.5rem}.hero-content p,.card-title{font-size:1.1rem}}@media (max-width: 768px){.header-container{flex-direction:column;padding:10px}.logo{margin-bottom:10px}.main-nav{width:100%;margin:10px 0}.main-nav ul{justify-content:center;flex-wrap:wrap}.main-nav li{margin:5px 10px}.hero-banner{height:500px;margin-top:140px}.hero-content h2{font-size:2rem}.hero-content p{font-size:1rem}.section{padding:40px 0}.section-header h2{font-size:1.6rem}.announcement-cards,.event-cards,.product-cards{grid-template-columns:1fr}.gallery-grid{grid-template-columns:repeat(2,1fr)}.join-us h2{font-size:2rem}.join-us p{font-size:1.1rem}.benefits,.footer-columns{grid-template-columns:1fr}}@media (max-width: 480px){.hero-banner{height:400px;margin-top:160px}.hero-content h2{font-size:1.8rem}.hero-content p{font-size:.9rem}.gallery-grid{grid-template-columns:1fr}.gallery-item{height:250px}.card-footer{flex-direction:column;gap:10px;align-items:flex-start}.price-info{flex-direction:column;align-items:flex-start}.current-price{margin-bottom:5px}.progress-info{flex-direction:column;gap:5px}}.camping-site{font-family:Noto Sans TC,微軟正黑體,sans-serif;color:#333;line-height:1.6;background-color:#f9f9f9}.container{max-width:1200px;margin:0 auto;padding:0 20px}.section{padding:60px 0}.activity-tabs{display:flex;justify-content:center;gap:1rem;margin-top:2rem}.activity-tabs .tab-button{display:flex;align-items:center;gap:.5rem;padding:.75rem 2rem;background:#ffffff1a;border:2px solid rgba(255,255,255,.3);border-radius:50px;color:#fff;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease}.activity-tabs .tab-button:hover{background:#fff3;border-color:#ffffff80;transform:translateY(-2px)}.activity-tabs .tab-button.active{background:#fff;color:#2c3e50;border-color:#fff}.activity-tabs .tab-button i{font-size:1.1rem}.experience-card{min-height:400px}.experience-card .card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem;gap:1rem}.experience-type-badge{display:inline-block;padding:.35rem .75rem;border-radius:20px;font-size:.875rem;font-weight:600;white-space:nowrap}.experience-type-badge.outdoor{background:#e3f2fd;color:#1976d2}.experience-type-badge.craft{background:#f3e5f5;color:#7b1fa2}.experience-type-badge.food{background:#fff3e0;color:#e65100}.experience-type-badge.culture{background:#e8f5e9;color:#2e7d32}.experience-type-badge.sport{background:#fce4ec;color:#c2185b}.experience-card .card-description{font-size:.95rem;color:#666;line-height:1.6;margin:1rem 0;overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.experience-card .signup-status{display:inline-block;padding:.4rem .8rem;border-radius:6px;font-size:.875rem;font-weight:600}.experience-card .signup-status.open{background:#d4edda;color:#155724}.experience-card .signup-status.upcoming{background:#fff3cd;color:#856404}.experience-card .signup-status.closed{background:#f8d7da;color:#721c24}.sorting-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.event-count{font-size:.95rem;color:#666}.events-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:24px;margin-bottom:40px}.event-card{background-color:#fff;border-radius:10px;overflow:hidden;box-shadow:0 2px 10px #00000014;transition:transform .3s ease,box-shadow .3s ease;display:flex;flex-direction:column;height:100%}.event-card:hover{transform:translateY(-5px);box-shadow:0 8px 16px #0000001f}.card-image{position:relative;height:200px;overflow:hidden}.card-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease}.event-card:hover .card-image img{transform:scale(1.05)}.card-date-badge{position:absolute;top:16px;left:16px;width:60px;height:60px;background-color:#ffffffe6;border-radius:8px;display:flex;flex-direction:column;justify-content:center;align-items:center;box-shadow:0 2px 6px #0000001a}.card-date-badge .month{display:block;font-size:.85rem;font-weight:600;color:#e74c3c;text-transform:uppercase;line-height:1;margin-bottom:2px}.card-date-badge .day{display:block;font-size:1.5rem;font-weight:700;color:#2c3e50;line-height:1.2}.event-status{position:absolute;top:16px;right:16px;padding:6px 12px;border-radius:4px;font-size:.8rem;font-weight:600;box-shadow:0 2px 4px #0000001a}.event-status.open{background-color:#2ecc71;color:#fff}.event-status.full,.event-status.closed{background-color:#f1c40f;color:#34495e}.event-status.completed{background-color:#95a5a6;color:#fff}.status-badge{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background-color:#00000080;color:#fff;font-size:1.5rem;font-weight:700}.card-content{padding:20px;flex-grow:1;display:flex;flex-direction:column;position:relative}.difficulty-badge{position:absolute;top:-15px;right:20px;padding:4px 12px;border-radius:20px;font-size:.8rem;font-weight:600;box-shadow:0 2px 5px #0000001a}.difficulty-badge.easy{background-color:#e7f9ed;color:#27ae60;border:1px solid #d0f5e0}.difficulty-badge.medium{background-color:#fef8e3;color:#f39c12;border:1px solid #fdf1d1}.difficulty-badge.hard{background-color:#feeae6;color:#e74c3c;border:1px solid #fcd5ce}.card-title{font-size:1.3rem;margin:16px 0 12px;color:#2c3e50;line-height:1.4;height:3.6rem;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.card-info{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:16px}.info-item{display:flex;align-items:center;font-size:.9rem;color:#7f8c8d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.info-item i{min-width:20px;margin-right:8px;font-size:1rem;color:#3498db}.info-item span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.spots-info{flex:1;margin-right:16px}.progress-bar{height:6px;background-color:#ecf0f1;border-radius:3px;overflow:hidden;margin-bottom:6px}.progress{height:100%;background-color:#3498db;border-radius:3px}.spots-left{font-size:.85rem;color:#7f8c8d}.btn-primary{background-color:#3498db;color:#fff;border:none;padding:8px 16px;border-radius:4px;font-weight:600;cursor:pointer;transition:background-color .3s ease;white-space:nowrap}.btn-primary:hover{background-color:#2980b9}.btn-primary:disabled{background-color:#95a5a6;cursor:not-allowed}.btn-secondary{background-color:#fff;color:#3498db;border:1px solid #3498db;padding:8px 16px;border-radius:4px;font-weight:600;cursor:pointer;transition:all .3s ease}.btn-secondary:hover{background-color:#f7fbfe}@media (max-width: 992px){.events-grid{grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}@media (max-width: 768px){.events-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr))}}@media (max-width: 576px){.events-grid,.card-info{grid-template-columns:1fr}}.header{background-color:#fff;box-shadow:0 2px 10px #0000000d;position:sticky;top:0;z-index:1000}.header-container{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;max-width:1200px;margin:0 auto}.logo{display:flex;align-items:center}.logo-img{height:40px;margin-right:12px}.logo h1{font-size:1.5rem;font-weight:700;color:#2c3e50;margin:0}.main-nav ul{display:flex;list-style:none;margin:0;padding:0;gap:20px}.main-nav a{text-decoration:none;color:#2c3e50;font-weight:500;font-size:1rem;padding:6px 0;position:relative}.main-nav a.active{color:#3498db}.main-nav a.active:after{content:"";position:absolute;bottom:0;left:0;width:100%;height:2px;background-color:#3498db}.main-nav a:hover:not(.active){color:#3498db}.user-actions{position:relative}.btn-login{background-color:#3498db;color:#fff;border:none;padding:8px 16px;border-radius:4px;font-weight:500;cursor:pointer;transition:background-color .3s ease}.btn-login:hover{background-color:#2980b9}.user-menu{display:flex;align-items:center;cursor:pointer;position:relative}.user-avatar{width:36px;height:36px;border-radius:50%;-o-object-fit:cover;object-fit:cover;margin-right:8px}.dropdown-menu{position:absolute;top:100%;right:0;background-color:#fff;box-shadow:0 4px 12px #0000001a;border-radius:4px;padding:8px 0;min-width:160px;display:none;z-index:100}.user-menu:hover .dropdown-menu{display:block}.dropdown-menu a{display:block;padding:8px 16px;color:#333;text-decoration:none;font-size:.95rem}.dropdown-menu a:hover{background-color:#f5f8fa}.join-us{background-color:#34495e;color:#fff;padding:80px 0;text-align:center}.join-content{max-width:600px;margin:0 auto}.join-us h2{font-size:2.2rem;margin-bottom:16px}.join-us p{font-size:1.1rem;margin-bottom:24px;opacity:.9}.benefits{list-style:none;padding:0;margin:0 0 32px;text-align:left;display:inline-block}.benefits li{margin-bottom:12px;padding-left:24px;position:relative;font-size:1.05rem}.benefits li:before{content:"✓";position:absolute;left:0;top:0;color:#3498db;font-weight:700}.footer{background-color:#2c3e50;color:#fff;padding:60px 0 30px}.footer-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:50px}.footer-column h3{font-size:1.2rem;margin-bottom:20px;font-weight:600;color:#f1c40f}.footer-column p{line-height:1.7;opacity:.8;font-size:.95rem}.footer-column ul{list-style:none;padding:0;margin:0}.footer-column li{margin-bottom:12px;font-size:.95rem;opacity:.8;display:flex;align-items:center}.footer-column li i{margin-right:10px;opacity:.9}.social-links{display:flex;gap:16px}.social-link{width:40px;height:40px;border-radius:50%;background-color:#ffffff1a;color:#fff;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background-color .3s ease}.social-link:hover{background-color:#fff3}.copyright{text-align:center;padding-top:30px;border-top:1px solid rgba(255,255,255,.1);font-size:.9rem;opacity:.7}[class^=icon-]{font-family:"Font Awesome 5 Free";display:inline-block}.icon-facebook:before{content:""}.icon-instagram:before{content:""}.icon-line:before{content:""}.icon-youtube:before{content:""}.icon-time:before{content:""}.icon-user:before{content:""}.icon-price:before{content:""}.icon-close:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-right:before{content:""}.icon-search-empty:before{content:""}.footer{background-color:#2c3e50;color:#fff;padding:50px 0 20px}.footer-container{max-width:1200px;margin:0 auto;padding:0 20px}.footer-top{display:flex;flex-wrap:wrap;gap:30px;margin-bottom:40px}.footer-logo{flex:1;min-width:200px}.footer-logo h2{margin:15px 0 10px}.footer-logo p{color:#ccc;font-size:14px}.footer-links{flex:2;display:flex;flex-wrap:wrap;gap:30px}.footer-links-column{flex:1;min-width:150px}.footer-links-column h3{margin-bottom:15px;font-size:18px}.footer-links-column ul{list-style:none;padding:0}.footer-links-column li{margin-bottom:10px}.footer-links-column a{color:#ccc;text-decoration:none;transition:color .3s}.footer-links-column a:hover{color:#fff}.social-links .social-link{display:flex;align-items:center}.social-links i{margin-right:8px}.newsletter{flex:1;min-width:250px}.newsletter h3{margin-bottom:15px;font-size:18px}.newsletter p{color:#ccc;margin-bottom:15px;font-size:14px}.newsletter-form{display:flex}.newsletter-form input{flex:1;padding:10px;border:none;border-radius:4px 0 0 4px}.btn-subscribe{padding:10px 15px;background-color:#e74c3c;color:#fff;border:none;border-radius:0 4px 4px 0;cursor:pointer;transition:background-color .3s}.btn-subscribe:hover{background-color:#c0392b}.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:20px;display:flex;flex-wrap:wrap;justify-content:space-between}.copyright{color:#999;font-size:14px;margin:0}.footer-bottom-links a{color:#999;text-decoration:none;margin-left:20px;font-size:14px;transition:color .3s}.footer-bottom-links a:hover{color:#fff}@media (max-width: 768px){.footer-top{flex-direction:column}.footer-bottom{flex-direction:column;align-items:center;text-align:center}.footer-bottom-links{margin-top:15px}.footer-bottom-links a{margin:0 10px}}.event-detail-layout{display:flex;gap:2rem;margin-top:2rem;margin-bottom:4rem}.event-main-info{flex:2}.event-sidebar{flex:1}.content-card,.sidebar-card{background-color:#fff;border-radius:8px;box-shadow:0 2px 10px #0000000d;padding:1.5rem;margin-bottom:2rem}.event-gallery{margin-bottom:2rem}.main-image{width:100%;height:auto;border-radius:8px;margin-bottom:.5rem}.thumbnail-gallery{display:flex;gap:.5rem;overflow-x:auto;padding-bottom:.5rem}.thumbnail{width:80px;height:60px;-o-object-fit:cover;object-fit:cover;border-radius:4px;cursor:pointer}.event-description-section h2,.event-schedule h2,.event-notes h2,.event-location h2{color:#333;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid #eee}.schedule-timeline{padding:1rem 0}.schedule-item{display:flex;margin-bottom:1.5rem;position:relative}.schedule-item:before{content:"";position:absolute;left:7px;top:30px;bottom:-30px;width:2px;background-color:#eee}.schedule-item:last-child:before{display:none}.time-point{flex:0 0 80px;font-weight:700;color:#666;position:relative}.time-point:after{content:"";position:absolute;width:12px;height:12px;background-color:#4caf50;border-radius:50%;left:2px;top:5px}.schedule-content{flex:1}.schedule-content h3{font-size:1.1rem;margin-bottom:.5rem}.event-map{width:100%;height:300px;border-radius:8px;margin-top:1rem;background-color:#f5f5f5}.status-badge{display:inline-block;padding:.25rem .75rem;border-radius:4px;font-weight:700;margin-bottom:1rem}.status-badge.open{background-color:#e3f7e3;color:#2e7d32}.status-badge.full,.status-badge.closed{background-color:#ffeaea;color:#c62828}.status-badge.completed{background-color:#e3e3e3;color:#616161}.event-meta{margin-bottom:1.5rem}.meta-item{display:flex;margin-bottom:1rem;align-items:flex-start}.meta-item i{flex:0 0 24px;margin-right:.75rem;color:#666}.meta-content{display:flex;flex-direction:column}.meta-label{font-size:.9rem;color:#666}.meta-value{font-weight:700}.registration-actions{display:flex;flex-direction:column;gap:.75rem}.btn-register,.btn-wishlist,.btn-share{width:100%;padding:.75rem;font-size:1rem;display:flex;align-items:center;justify-content:center;border-radius:4px;cursor:pointer;border:none}.btn-primary{background-color:#4caf50;color:#fff}.btn-secondary{background-color:#f5f5f5;color:#333}.btn-outline{background-color:transparent;border:1px solid #ddd;color:#666}.organizer-info{display:flex;align-items:center}.organizer-avatar{width:50px;height:50px;border-radius:50%;overflow:hidden;margin-right:1rem}.organizer-avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.related-event-list{display:flex;flex-direction:column;gap:1rem}.related-event-item{display:flex;align-items:center;padding-bottom:1rem;border-bottom:1px solid #eee}.related-event-item:last-child{border-bottom:none}.related-event-image{width:70px;height:50px;-o-object-fit:cover;object-fit:cover;border-radius:4px;margin-right:1rem}.related-event-content h4{font-size:.95rem;margin:0 0 .25rem}.related-event-date{font-size:.85rem;color:#666}@media (max-width: 768px){.event-detail-layout{flex-direction:column}.event-sidebar{order:-1}}.announcements-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(350px,1fr));gap:24px;margin-bottom:40px}.announcement-card{background-color:#fff;border-radius:10px;overflow:hidden;box-shadow:0 2px 10px #00000014;transition:transform .3s ease,box-shadow .3s ease;display:flex;flex-direction:column;height:100%}.announcement-card:hover{transform:translateY(-5px);box-shadow:0 8px 16px #0000001f}.card-header{display:flex;justify-content:space-between;align-items:flex-start;padding:16px 20px;background-color:#f8f9fa;border-bottom:1px solid #eaeaea}.card-date{display:flex;flex-direction:column;align-items:center;padding:6px 10px;border-radius:6px;background-color:#fff;box-shadow:0 2px 5px #0000000d}.card-date .day{font-size:1.5rem;font-weight:700;line-height:1.2;color:#2c3e50}.card-date .month{font-size:.85rem;font-weight:600;color:#e74c3c;text-transform:uppercase}.card-date .year{font-size:.75rem;color:#7f8c8d;margin-top:2px}.card-tags{display:flex;flex-direction:column;gap:6px}.importance-tag{padding:4px 8px;border-radius:4px;font-size:.8rem;font-weight:600;text-align:center}.importance-tag.important{background-color:#ffeaec;color:#e74c3c;border:1px solid #fcd0d3}.importance-tag.normal{background-color:#f1f6fb;color:#3498db;border:1px solid #d4e5f3}.category-tag{padding:4px 8px;border-radius:4px;font-size:.8rem;font-weight:600;text-align:center}.category-tag.activity{background-color:#e7f9ed;color:#27ae60;border:1px solid #d0f5e0}.category-tag.news{background-color:#f1f6fb;color:#3498db;border:1px solid #d4e5f3}.category-tag.guide{background-color:#fef8e3;color:#f39c12;border:1px solid #fdf1d1}.category-tag.safety{background-color:#feeae6;color:#e74c3c;border:1px solid #fcd5ce}.card-content{padding:20px;flex-grow:1;display:flex;flex-direction:column}.card-title{font-size:1.3rem;margin:0 0 12px;color:#2c3e50;line-height:1.4;height:3.6rem;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.card-excerpt{color:#666;font-size:.95rem;margin-bottom:20px;line-height:1.5;height:4.5rem;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;flex-grow:1}.card-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:16px;border-top:1px solid #f0f0f0}.author{font-size:.85rem;color:#7f8c8d}.read-more{color:#3498db;font-size:.95rem;font-weight:600;text-decoration:none;transition:color .2s ease}.read-more:hover{color:#2980b9;text-decoration:underline}.sorting-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding:16px;background-color:#fff;border-radius:8px;box-shadow:0 2px 8px #0000000d}.announcement-count{font-size:.95rem;color:#666}.sort-dropdown{display:flex;align-items:center;gap:8px}.sort-dropdown label{color:#666;font-size:.95rem}.sort-select{padding:8px 12px;border:1px solid #ddd;border-radius:4px;font-size:.9rem}.filter-section{background-color:#fff;padding:24px 0;box-shadow:0 2px 4px #0000000d;position:sticky;top:0;z-index:100}.filter-controls{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px}.search-box{position:relative;flex:1;min-width:250px;max-width:400px}.search-box input{width:100%;padding:12px 40px 12px 16px;border:1px solid #ddd;border-radius:4px;font-size:1rem}.btn-search{position:absolute;right:0;top:0;background:transparent;border:none;padding:12px 16px;cursor:pointer;color:#666}.filter-dropdowns{display:flex;flex-wrap:wrap;gap:12px}.filter-select{padding:10px 12px;border:1px solid #ddd;border-radius:4px;background-color:#fff;font-size:.95rem;min-width:120px}.filter-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.tag{display:inline-flex;align-items:center;background-color:#e7f3ff;border-radius:50px;padding:6px 12px;font-size:.9rem;color:#2980b9}.tag-close{background:none;border:none;margin-left:8px;cursor:pointer;color:#2980b9;font-size:.8rem;display:flex;align-items:center;justify-content:center}.clear-all{border:none;background:none;color:#7f8c8d;cursor:pointer;font-size:.9rem;padding:6px 12px;text-decoration:underline}.no-results{text-align:center;padding:60px 20px;background-color:#fff;border-radius:8px;box-shadow:0 2px 8px #0000000d}.no-results-icon{font-size:3rem;color:#bdc3c7;margin-bottom:16px}.no-results h3{font-size:1.5rem;color:#2c3e50;margin-bottom:12px}.no-results p{color:#7f8c8d;margin-bottom:24px;max-width:400px;margin-left:auto;margin-right:auto}.page-control{background-color:#fff;border:1px solid #ddd;padding:8px 16px;border-radius:4px;color:#3498db;font-size:.9rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center}.page-number:hover{background-color:#f7fbfe;color:#3498db}.page-number.active{background-color:#3498db;color:#fff;border-color:#3498db}.page-header{background-color:#2c3e50;color:#fff;padding:60px 0;text-align:center;margin-bottom:0}@media (max-width: 992px){.announcements-grid{grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}}@media (max-width: 768px){.filter-controls{flex-direction:column;align-items:stretch}.search-box{max-width:100%}.filter-dropdowns{justify-content:space-between}.filter-select{flex:1;min-width:auto}.sorting-controls{flex-direction:column;align-items:flex-start;gap:12px}.announcements-grid{grid-template-columns:1fr}}@media (max-width: 576px){.card-header{flex-direction:column;gap:12px}.card-tags{flex-direction:row;width:100%}.page-header{padding:40px 0}.page-header h1{font-size:2rem}.filter-dropdowns{grid-template-columns:1fr;display:grid;gap:10px}}.icon-search:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.icon-close:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.icon-arrow-left:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.icon-arrow-right:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.icon-search-empty:before{content:"";font-family:"Font Awesome 5 Free";font-weight:900}.fa-icon{margin-right:8px;min-width:18px;text-align:center}.icon{display:inline-block;width:1em;height:1em;vertical-align:-.125em;margin-right:8px}.icon-primary{color:#3498db}.icon-secondary{color:#2c3e50}.icon-accent{color:#e74c3c}.product-list-header{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.product-list-header h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.product-list-header p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.product-filter-section{background-color:#fff;padding:24px 0;box-shadow:0 2px 4px #0000000d;position:sticky;top:0;z-index:100}.product-filter-controls{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px}.product-search-box{position:relative;flex:1;min-width:250px;max-width:400px}.product-search-box input{width:100%;padding:12px 40px 12px 16px;border:1px solid #ddd;border-radius:var(--border-radius);font-size:1rem}.product-btn-search{position:absolute;right:0;top:0;background:transparent;border:none;padding:12px 16px;cursor:pointer;color:#666}.product-filter-dropdowns{display:flex;flex-wrap:wrap;gap:12px}.product-filter-select{padding:10px 12px;border:1px solid #ddd;border-radius:var(--border-radius);background-color:#fff;font-size:.95rem;min-width:120px}.product-filter-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.product-tag{display:inline-flex;align-items:center;background-color:#e7f3ff;border-radius:50px;padding:6px 12px;font-size:.9rem;color:var(--primary-color)}.product-tag-close{background:none;border:none;margin-left:8px;cursor:pointer;color:var(--primary-color);font-size:.8rem;display:flex;align-items:center;justify-content:center}.product-clear-all{border:none;background:none;color:var(--light-text);cursor:pointer;font-size:.9rem;padding:6px 12px;text-decoration:underline}.product-sorting-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding:16px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.product-count{font-size:.95rem;color:var(--light-text)}.product-sort-dropdown{display:flex;align-items:center;gap:8px}.product-sort-dropdown label{color:var(--light-text);font-size:.95rem}.product-sort-select{padding:8px 12px;border:1px solid #ddd;border-radius:var(--border-radius);font-size:.9rem}.product-list-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:30px;margin-bottom:40px}.product-list-card{background-color:var(--card-bg);border-radius:var(--border-radius);box-shadow:var(--box-shadow);overflow:hidden;transition:transform .3s ease,box-shadow .3s ease;display:flex;flex-direction:column;height:100%}.product-list-card:hover{transform:translateY(-5px);box-shadow:0 12px 20px #00000026}.product-card-image{position:relative;height:220px;overflow:hidden}.product-card-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .5s ease}.product-list-card:hover .product-card-image img{transform:scale(1.05)}.product-new-tag,.product-discount-tag{position:absolute;padding:5px 10px;font-size:.8rem;font-weight:600;border-radius:4px;color:#fff}.product-new-tag{background-color:var(--accent-color);top:10px;left:10px}.product-discount-tag{background-color:var(--important-color);top:10px;right:10px}.product-card-content{padding:20px;flex-grow:1;display:flex;flex-direction:column}.product-card-title{font-size:1.2rem;margin:0 0 12px;color:var(--text-color);line-height:1.4;height:3.3rem;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.product-card-description{color:var(--light-text);font-size:.95rem;margin-bottom:15px;line-height:1.5;height:4.5rem;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;flex-grow:1}.product-price-info{display:flex;align-items:center;margin-bottom:15px}.product-current-price{font-size:1.3rem;font-weight:700;color:var(--important-color);margin-right:10px}.product-original-price{color:var(--light-text);text-decoration:line-through;font-size:.9rem}.product-progress-bar{width:100%;height:8px;background-color:#e0e0e0;border-radius:4px;overflow:hidden;margin-bottom:10px}.product-progress{height:100%;background-color:var(--success-color);border-radius:4px}.product-progress-info{display:flex;justify-content:space-between;font-size:.9rem;color:var(--light-text);margin-bottom:15px}.product-card-footer{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:15px;border-top:1px solid #eee}.product-status{font-size:.9rem;color:var(--light-text)}.product-status.active{color:var(--success-color)}.product-status.ended{color:var(--light-text)}.product-status.coming-soon{color:var(--accent-color)}.product-btn-detail{background-color:var(--primary-color);color:#fff;border:none;padding:8px 16px;border-radius:var(--border-radius);font-weight:600;cursor:pointer;transition:background-color .3s ease}.product-btn-detail:hover{background-color:#4a7164}.product-btn-detail:disabled{background-color:#95a5a6;cursor:not-allowed}.product-no-results{text-align:center;padding:60px 20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.product-no-results-icon{font-size:3rem;color:#bdc3c7;margin-bottom:16px}.product-no-results h3{font-size:1.5rem;color:var(--text-color);margin-bottom:12px}.product-no-results p{color:var(--light-text);margin-bottom:24px;max-width:400px;margin-left:auto;margin-right:auto}.product-pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:40px}.product-page-control{background-color:#fff;border:1px solid #ddd;padding:8px 16px;border-radius:var(--border-radius);color:var(--primary-color);font-size:.9rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center}.product-page-control:hover{background-color:#f7fbfe}.product-page-control:disabled{color:#bdc3c7;cursor:not-allowed;background-color:#f5f5f5}.product-page-control i{font-size:.8rem}.product-page-numbers{display:flex;gap:6px}.product-page-number{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;font-size:.95rem;border:1px solid #ddd;background-color:#fff;color:#666;cursor:pointer;transition:all .2s ease}.product-page-number:hover{background-color:#f7fbfe;color:var(--primary-color)}.product-page-number.active{background-color:var(--primary-color);color:#fff;border-color:var(--primary-color)}@media (max-width: 992px){.product-list-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr))}}@media (max-width: 768px){.product-filter-controls{flex-direction:column;align-items:stretch}.product-search-box{max-width:100%}.product-filter-dropdowns{justify-content:space-between}.product-filter-select{flex:1;min-width:auto}.product-sorting-controls{flex-direction:column;align-items:flex-start;gap:12px}.product-list-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 576px){.product-list-grid{grid-template-columns:1fr}.product-price-info{flex-direction:column;align-items:flex-start}.product-current-price{margin-bottom:5px}.product-progress-info{flex-direction:column;gap:5px}.product-card-footer{flex-direction:column;gap:10px;align-items:flex-start}}.product-detail-layout{display:flex;gap:2rem;margin-top:2rem;margin-bottom:4rem}.product-main-info{flex:7}.product-sidebar{flex:3}.product-content-card,.product-sidebar-card{background-color:#fff;border-radius:8px;box-shadow:0 4px 12px #0000001a;padding:1.875rem;margin-bottom:2rem}.product-page-title{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.product-page-title h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.product-page-title p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.product-breadcrumb{display:flex;align-items:center;margin-bottom:1.5rem;font-size:.9rem;color:var(--light-text)}.product-breadcrumb a{color:var(--primary-color);text-decoration:none}.product-breadcrumb a:hover{text-decoration:underline}.product-breadcrumb .separator{margin:0 8px}.product-gallery{display:flex;flex-direction:column;gap:1rem}.product-main-image{width:100%;display:flex;align-items:center;justify-content:center;border-radius:8px;background:#f9fafb;padding:1.875rem}.product-main-image img{max-width:75%;width:auto;height:auto;-o-object-fit:contain;object-fit:contain;display:block;transition:transform .3s ease}.product-main-image:hover img{transform:scale(1.02)}.product-thumbnail-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(80px,1fr));gap:.5rem;padding:.5rem 0}.product-thumbnail{position:relative;width:100%;aspect-ratio:1;overflow:hidden;border-radius:6px;border:2px solid #e5e7eb;cursor:pointer;transition:all .2s ease;background:#f9fafb}.product-thumbnail:hover{border-color:#3b82f6;transform:translateY(-2px);box-shadow:0 4px 6px -1px #0000001a}.product-thumbnail.active{border-color:#3b82f6;box-shadow:0 0 0 3px #3b82f633}.product-thumbnail img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block}.product-thumbnail-gallery{display:flex;gap:.5rem;overflow-x:auto;padding-bottom:.5rem}.product-labels{display:flex;gap:10px;margin-bottom:1rem}.product-label{display:inline-block;padding:5px 10px;font-size:.8rem;font-weight:600;border-radius:4px}.product-label.new{background-color:var(--accent-color);color:#fff}.product-label.discount{background-color:var(--important-color);color:#fff}.product-label.bestseller{background-color:var(--success-color);color:#fff}.product-title{font-size:1.8rem;margin-bottom:.5rem;color:var(--text-color)}.product-subtitle{font-size:1.1rem;color:var(--light-text);margin-bottom:1.5rem}.product-price-block{display:flex;align-items:baseline;margin-bottom:1.5rem}.product-current-price{font-size:2rem;font-weight:700;color:var(--important-color)}.product-original-price{font-size:1.2rem;text-decoration:line-through;color:var(--light-text);margin-left:1rem}.product-discount-percentage{background-color:var(--important-color);color:#fff;font-size:.9rem;font-weight:600;padding:4px 8px;border-radius:4px;margin-left:1rem}.product-status-info{margin-bottom:1.5rem}.product-status{display:inline-block;padding:.25rem .75rem;border-radius:4px;font-weight:700;margin-bottom:.5rem}.product-status.active{background-color:#e3f7e3;color:#2e7d32}.product-status.ended{background-color:#e3e3e3;color:#616161}.product-status.coming-soon{background-color:#fff8e1;color:#f57c00}.product-progress-container{margin-bottom:1.5rem}.product-progress-bar{width:100%;height:10px;background-color:#e0e0e0;border-radius:5px;overflow:hidden;margin-bottom:.5rem}.product-progress{height:100%;background-color:var(--success-color);border-radius:5px}.product-progress-info{display:flex;justify-content:space-between;font-size:.9rem}.product-sold-count{color:var(--primary-color);font-weight:600}.product-goal-count{color:var(--light-text)}.product-time-remaining{font-size:.9rem;color:var(--important-color);margin-top:.5rem}.product-purchase-options{margin-bottom:1.5rem}.option-label{font-weight:600;margin-bottom:.5rem;display:block}.option-group{margin-bottom:1rem}.product-quantity{display:flex;align-items:center;max-width:150px;margin:0}.product-quantity-btn{width:36px;height:36px;display:flex;align-items:center;justify-content:center;background-color:#f0f0f0;border:1px solid #ddd;border-radius:4px;font-size:1.2rem;cursor:pointer;flex-shrink:0}.product-quantity-btn:hover{background-color:#e0e0e0}.product-quantity-btn:disabled{opacity:.5;cursor:not-allowed}.product-quantity-input{flex:1;height:36px;text-align:center;border:1px solid #ddd;margin:0 8px;font-size:1rem;min-width:40px;padding:0 5px}.product-color-options,.product-size-options{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:1rem}.product-color-option,.product-size-option{padding:8px 16px;border:1px solid #ddd;border-radius:4px;cursor:pointer;transition:all .2s ease}.product-color-option.selected,.product-size-option.selected{border-color:var(--primary-color);background-color:#f0f7f4}.product-color-option:hover,.product-size-option:hover{border-color:var(--primary-color)}.product-purchase-actions{display:flex;gap:1rem;margin-top:2rem}.product-buy-now-btn,.product-add-to-cart-btn{padding:12px 24px;border-radius:8px;font-weight:600;cursor:pointer;transition:all .3s ease;flex:1;display:flex;align-items:center;justify-content:center}.product-buy-now-btn{background-color:#5e8b7e;color:#fff;border:none}.product-buy-now-btn:hover{background-color:#4a7164}.product-add-to-cart-btn{background-color:#dfbd69;color:#2c3e50;border:none}.product-add-to-cart-btn:hover{background-color:#c9aa5e}.product-wishlist-btn{width:50px;background-color:transparent;color:var(--light-text);border:1px solid #ddd;display:flex;align-items:center;justify-content:center}.product-wishlist-btn:hover{background-color:#f5f5f5;color:var(--important-color)}.product-wishlist-btn.active{color:var(--important-color);border-color:var(--important-color)}.product-description{margin-bottom:2rem}.product-description h2{font-size:1.5rem;color:var(--text-color);margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid #eee}.product-description-content{line-height:1.8;color:var(--text-color)}.product-description-content p{margin-bottom:1rem}.product-specs-table{width:100%;border-collapse:collapse;margin-bottom:1.5rem}.product-specs-table tr{border-bottom:1px solid #eee}.product-specs-table tr:last-child{border-bottom:none}.product-specs-table th{text-align:left;padding:12px 15px;background-color:#f9f9f9;width:150px;font-weight:600;color:var(--text-color)}.product-specs-table td{padding:12px 15px;color:var(--light-text)}.product-sidebar-card h3{font-size:1.2rem;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid #eee;color:var(--text-color)}.product-delivery-info,.product-return-policy,.product-payment-methods{margin-bottom:1.5rem}.product-info-item{display:flex;margin-bottom:1rem}.product-info-icon{flex:0 0 24px;color:var(--primary-color);margin-right:.75rem}.product-info-content{flex:1}.product-info-title{font-weight:600;margin-bottom:.2rem;color:var(--text-color)}.product-info-description{font-size:.9rem;color:var(--light-text)}.product-group-buy-info{padding:1.5rem;background-color:#f9f9f9;border-radius:var(--border-radius);margin-bottom:1.5rem}.product-group-buy-info h3{font-size:1.1rem;margin-bottom:1rem;border-bottom:none;padding-bottom:0}.group-buy-steps{counter-reset:step;padding-left:0}.group-buy-step{position:relative;padding-left:40px;margin-bottom:1rem;counter-increment:step}.group-buy-step:before{content:counter(step);position:absolute;left:0;top:0;width:28px;height:28px;background-color:var(--primary-color);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:.9rem}.group-buy-step-title{font-weight:600;margin-bottom:.2rem;color:var(--text-color)}.group-buy-step-description{font-size:.9rem;color:var(--light-text)}.product-popular-items h3{margin-bottom:1.5rem}.popular-item{display:flex;margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid #eee}.popular-item:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}.popular-item-image{width:80px;height:80px;-o-object-fit:cover;object-fit:cover;border-radius:4px;margin-right:1rem}.popular-item-content{flex:1}.popular-item-title{font-size:1rem;margin-bottom:.5rem;font-weight:600;color:var(--text-color)}.popular-item-title a{color:var(--text-color);text-decoration:none}.popular-item-title a:hover{color:var(--primary-color)}.popular-item-price{display:flex;align-items:center}.popular-item-current-price{font-weight:600;color:var(--important-color)}.popular-item-original-price{font-size:.85rem;text-decoration:line-through;color:var(--light-text);margin-left:.5rem}.product-reviews{margin-bottom:2rem}.product-reviews-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.product-rating{display:flex;align-items:center}.product-rating-value{font-size:2rem;font-weight:700;color:var(--text-color);margin-right:1rem}.product-rating-stars{color:var(--accent-color);font-size:1.2rem}.product-rating-count{margin-left:.5rem;color:var(--light-text);font-size:.9rem}.write-review-btn{padding:8px 16px;background-color:var(--primary-color);color:#fff;border:none;border-radius:var(--border-radius);font-weight:600;cursor:pointer;transition:background-color .3s ease}.write-review-btn:hover{background-color:#4a7164}.review-card{background-color:#fcfcfc;padding:1.5rem;border-radius:var(--border-radius);margin-bottom:1.5rem}.review-header{display:flex;justify-content:space-between;margin-bottom:1rem}.reviewer-info{display:flex;align-items:center}.reviewer-avatar{width:40px;height:40px;border-radius:50%;overflow:hidden;margin-right:1rem}.reviewer-avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.reviewer-name{font-weight:600;color:var(--text-color)}.review-date{font-size:.85rem;color:var(--light-text);margin-top:.2rem}.review-rating{color:var(--accent-color)}.review-content{line-height:1.6;margin-bottom:1rem}.review-photos{display:flex;gap:.5rem;margin-bottom:1rem}.review-photo{width:80px;height:80px;-o-object-fit:cover;object-fit:cover;border-radius:4px;cursor:pointer}.review-helpful{display:flex;justify-content:flex-end;font-size:.9rem;color:var(--light-text)}.helpful-btn{background:none;border:none;color:var(--primary-color);cursor:pointer;margin-left:.5rem}.product-similar-items{margin-top:3rem}.product-similar-items h2{font-size:1.5rem;margin-bottom:1.5rem;color:var(--text-color)}.similar-items-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:1.5rem}.back-to-top{position:fixed;bottom:30px;right:30px;width:50px;height:50px;background-color:var(--primary-color);color:#fff;border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 10px #0000001a;opacity:0;visibility:hidden;transition:all .3s ease}.back-to-top.visible{opacity:1;visibility:visible}.back-to-top:hover{background-color:#4a7164;transform:translateY(-3px)}@media (max-width: 992px){.product-detail-layout{flex-direction:column}.product-main-info{order:2}.product-sidebar{order:1}.product-purchase-actions{flex-direction:column}.product-wishlist-btn{width:100%}.similar-items-grid{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}}@media (max-width: 768px){.product-main-image{height:300px}.product-purchase-options .option-group{flex-direction:column}.product-color-options,.product-size-options{flex-wrap:wrap}.product-specs-table th{width:120px}.review-header{flex-direction:column}.review-rating{margin-top:.5rem}.similar-items-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width: 576px){.product-page-title h1{font-size:2rem}.product-main-image{height:250px}.product-price-block{flex-wrap:wrap}.product-original-price,.product-discount-percentage{margin-top:.5rem;margin-left:0}.similar-items-grid{grid-template-columns:1fr}}.cart-page-title{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.cart-page-title h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.cart-page-title p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.cart-section{padding:40px 0}.cart-header{display:flex;background-color:#f8f9fa;padding:15px;border-radius:var(--border-radius) var(--border-radius) 0 0;font-weight:600;color:var(--text-color);border:1px solid #e0e0e0;border-bottom:none}.cart-column{padding:0 10px}.product-info{flex:3;display:flex;align-items:center}.product-price,.product-quantity,.product-subtotal{flex:1;text-align:center;display:flex;align-items:center;justify-content:center}.product-action{flex:.5;display:flex;align-items:center;justify-content:center}.cart-items{border:1px solid #e0e0e0;border-radius:0 0 var(--border-radius) var(--border-radius);overflow:hidden}.cart-item{display:flex;padding:20px 15px;border-bottom:1px solid #e0e0e0;background-color:#fff}.product-checkbox{margin-right:15px;display:flex;align-items:center}.product-checkbox input[type=checkbox]{width:18px;height:18px;cursor:pointer}.product-image{width:80px;height:80px;margin-right:15px;border-radius:4px;overflow:hidden}.product-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.product-details{flex:1}.product-name{font-size:1.1rem;margin:0 0 5px;color:var(--text-color)}.product-variant{font-size:.9rem;color:var(--light-text);margin:0}.quantity-control{display:flex;align-items:center;justify-content:center;max-width:120px;margin:0 auto}.quantity-btn{width:30px;height:30px;background-color:#f0f0f0;border:1px solid #ddd;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:1.1rem;font-weight:700}.quantity-btn:hover{background-color:#e0e0e0}.quantity-btn:disabled{opacity:.5;cursor:not-allowed}.quantity-control input{width:50px;height:30px;text-align:center;border:1px solid #ddd;margin:0 5px;border-radius:4px}.btn-remove{background:none;border:none;color:var(--light-text);cursor:pointer;font-size:1rem;padding:5px;transition:color .2s ease}.btn-remove:hover{color:var(--important-color)}.cart-footer{display:flex;justify-content:space-between;align-items:center;padding:15px;background-color:#f8f9fa;border:1px solid #e0e0e0;border-top:none;margin-bottom:30px}.cart-select-all{display:flex;align-items:center}.cart-select-all input[type=checkbox]{width:18px;height:18px;margin-right:8px;cursor:pointer}.cart-actions{display:flex;gap:10px}.btn-remove-selected{background:none;border:none;color:var(--light-text);cursor:pointer;font-size:.9rem;display:flex;align-items:center;gap:5px;padding:5px 10px;transition:color .2s ease}.btn-remove-selected:hover{color:var(--important-color)}.order-summary{background-color:#fff;border:1px solid #e0e0e0;border-radius:var(--border-radius);padding:20px;margin-bottom:20px;box-shadow:0 2px 5px #0000000d}.summary-row{display:flex;justify-content:space-between;margin-bottom:10px;font-size:1rem}.summary-row.total{margin-top:20px;padding-top:15px;border-top:1px solid #e0e0e0;font-size:1.2rem;font-weight:600}.summary-label,.summary-value{color:var(--text-color)}.summary-value.price{font-weight:600}.summary-value.discount{color:var(--important-color)}.summary-value.total-price{color:var(--important-color);font-size:1.3rem;font-weight:700}.checkout-actions{display:flex;justify-content:space-between;gap:20px;margin-bottom:40px}.btn-continue-shopping,.btn-checkout{padding:12px 25px;border-radius:var(--border-radius);font-weight:600;cursor:pointer;transition:all .3s ease;font-size:1rem}.btn-continue-shopping{flex:1;background-color:#fff;color:var(--primary-color);border:1px solid var(--primary-color);text-align:center}.btn-continue-shopping:hover{background-color:#f0f7f4}.btn-checkout{flex:2;background-color:var(--primary-color);color:#fff;border:none;text-align:center}.empty-cart{text-align:center;padding:60px 20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);margin-bottom:40px}.empty-cart .btn-primary{display:inline-block;padding:12px 30px;font-size:1rem}.recommended-section{margin-bottom:60px}.recommended-section .section-header{margin-bottom:30px}.recommended-products{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px}.recommended-product{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}.recommended-product:hover{transform:translateY(-5px);box-shadow:0 8px 16px #0000001a}.recommended-product .product-image{height:180px;width:100%;margin-right:0}.recommended-product .product-details{padding:15px}.recommended-product .product-name{font-size:1rem;margin-bottom:10px;height:40px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.product-price-row{margin-bottom:15px}.recommended-product .product-price{font-weight:600;color:var(--important-color);font-size:1.1rem}.btn-add-to-cart{width:100%;padding:8px 0;background-color:var(--primary-color);color:#fff;border:none;border-radius:4px;font-weight:600;cursor:pointer;transition:background-color .3s ease}.btn-add-to-cart:hover{background-color:#4a7164}@media (max-width: 992px){.recommended-products{grid-template-columns:repeat(auto-fill,minmax(180px,1fr))}}@media (max-width: 768px){.cart-header{display:none}.cart-item{flex-direction:column;padding:15px}.cart-column{padding:10px 0}.product-info{border-bottom:1px solid #f0f0f0;padding-bottom:15px;margin-bottom:10px}.product-price,.product-quantity,.product-subtotal,.product-action{justify-content:flex-start;width:100%}.product-price:before{content:"單價：";margin-right:10px}.product-quantity:before{content:"數量：";margin-right:10px}.product-subtotal:before{content:"小計：";margin-right:10px;font-weight:600}.product-action{margin-top:10px}.checkout-actions{flex-direction:column;gap:15px}.recommended-products{grid-template-columns:repeat(2,1fr)}}@media (max-width: 576px){.cart-footer{flex-direction:column;gap:15px;align-items:flex-start}.recommended-products{grid-template-columns:1fr}.checkout-actions{flex-direction:column;gap:15px}.btn-continue-shopping,.btn-checkout{width:100%}}.complete-page-title{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.complete-page-title h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.complete-page-title p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.complete-section{padding:60px 0;background-color:var(--background-color)}.complete-content{max-width:800px;margin:0 auto}.success-message{text-align:center;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:40px 30px;margin-bottom:30px}.success-icon{font-size:5rem;color:var(--success-color);margin-bottom:20px}.success-message h2{font-size:1.8rem;color:var(--text-color);margin-bottom:15px}.success-message p{font-size:1.1rem;color:var(--light-text);margin-bottom:20px}.order-number{display:inline-block;background-color:#f5f5f5;border-radius:30px;padding:10px 25px;font-size:1.1rem}.order-number strong{color:var(--primary-color);font-weight:700}.order-summary-card{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:30px;margin-bottom:30px}.order-summary-card h3{font-size:1.5rem;color:var(--text-color);margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #eee}.order-details{margin-bottom:30px}.detail-row{display:flex;margin-bottom:15px}.detail-label{flex:1;font-weight:600;color:var(--text-color)}.detail-value{flex:2;color:var(--light-text)}.detail-value.price{font-weight:700;color:var(--important-color)}.order-items h4{font-size:1.2rem;margin-bottom:15px;padding-bottom:10px;border-bottom:1px solid #eee}.order-item{display:flex;align-items:center;padding:15px 0;border-bottom:1px solid #f5f5f5}.item-image{width:70px;height:70px;border-radius:var(--border-radius);overflow:hidden;margin-right:15px;background-color:#f9f9f9}.item-name{font-weight:600;margin-bottom:5px;color:var(--text-color)}.item-variant{font-size:.9rem;color:var(--light-text);margin-bottom:5px}.item-price-qty{font-size:.9rem;color:var(--light-text)}.item-subtotal{font-weight:600;color:var(--text-color)}.next-steps-card{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:30px;margin-bottom:30px}.next-steps-card h3{font-size:1.5rem;color:var(--text-color);margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #eee}.steps-container{display:flex;flex-direction:column;gap:20px}.step{display:flex;align-items:flex-start}.step-icon{width:50px;height:50px;background-color:var(--primary-color);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:20px;flex-shrink:0}.step-icon i{font-size:1.4rem;color:#fff}.step-content h4{font-size:1.2rem;margin-bottom:8px}.step-content p{color:var(--light-text);line-height:1.6;margin:0}.action-buttons{display:flex;gap:20px;margin-bottom:30px}.btn-view-orders,.btn-continue-shopping{flex:1;text-align:center;padding:12px 0;border-radius:var(--border-radius);font-weight:600;transition:all .3s ease;text-decoration:none}.btn-view-orders{background-color:var(--primary-color);color:#fff}.btn-view-orders:hover{background-color:#4a7164}.btn-continue-shopping{background-color:#fff;color:var(--primary-color);border:1px solid var(--primary-color)}.customer-support{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:30px;text-align:center}.customer-support h3{font-size:1.5rem;margin-bottom:10px}.customer-support p{color:var(--light-text);margin-bottom:20px}.contact-methods{display:flex;flex-direction:column;gap:10px;max-width:400px;margin:0 auto}.contact-method{display:flex;align-items:center;padding:10px 20px;background-color:#f5f5f5;border-radius:30px}.contact-method i{margin-right:10px;color:var(--primary-color)}.invoice-options{display:flex;gap:15px;margin-top:10px}.invoice-option{flex:1;display:flex;align-items:center;padding:15px;border:1px solid #ddd;border-radius:var(--border-radius);cursor:pointer;transition:all .3s ease}.invoice-option:hover{border-color:var(--primary-color);background-color:#5e8b7e0d}.invoice-option.active{border-color:var(--primary-color);background-color:#5e8b7e1a}.invoice-detail-form{margin-top:20px;padding-top:15px;border-top:1px dashed #eee}.donation-option{display:flex;align-items:flex-start;margin-top:5px}.donation-option input[type=checkbox]{margin-right:10px;margin-top:3px}.payment-note{background-color:#f9f9f9;padding:15px;border-radius:var(--border-radius);margin:15px 0;font-size:.95rem;color:var(--light-text)}.payment-note p{margin-bottom:10px}.payment-note p:last-child{margin-bottom:0}.bank-info{background-color:#f5f5f5;padding:15px;border-radius:var(--border-radius);margin-top:15px}.bank-detail{display:flex;margin-bottom:10px}.bank-detail:last-child{margin-bottom:0}.detail-label{width:100px;font-weight:600;color:var(--text-color)}.store-options{display:flex;flex-wrap:wrap;gap:15px;margin-top:15px}.store-option{width:calc(50% - 8px);display:flex;align-items:center;padding:12px;border:1px solid #ddd;border-radius:var(--border-radius);cursor:pointer;transition:all .3s ease}.store-option:hover{border-color:var(--primary-color);background-color:#5e8b7e0d}.store-option.active{border-color:var(--primary-color);background-color:#5e8b7e1a}.store-logo{width:40px;height:40px;display:flex;align-items:center;justify-content:center;margin-right:10px}.store-logo img{max-width:100%;max-height:100%}.store-name{font-size:.95rem;font-weight:600}@media (max-width: 768px){.complete-section{padding:40px 0}.success-message{padding:30px 20px}.success-icon{font-size:4rem}.success-message h2{font-size:1.5rem}.order-summary-card,.next-steps-card,.customer-support{padding:20px}.detail-row{flex-direction:column;margin-bottom:20px}.detail-label{margin-bottom:5px}.action-buttons{flex-direction:column}.store-option{width:100%}}@media (max-width: 480px){.order-item{flex-direction:column;align-items:flex-start}.item-image{margin-bottom:10px}.item-subtotal{margin-top:10px;align-self:flex-end}.step{flex-direction:column;text-align:center}.step-icon{margin:0 auto 15px}.contact-method{flex-direction:column;gap:5px}.contact-method i{margin-right:0}.invoice-options{flex-direction:column}}.checkout-page-title{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.checkout-page-title h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.checkout-page-title p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.checkout-section{padding:40px 0 60px;background-color:var(--background-color)}.checkout-layout{display:grid;grid-template-columns:3fr 2fr;gap:30px}.checkout-progress{display:flex;align-items:center;justify-content:space-between;margin-bottom:30px;padding:20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.progress-step{display:flex;flex-direction:column;align-items:center;position:relative;flex:1}.step-number{width:40px;height:40px;background-color:#e0e0e0;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:var(--light-text);margin-bottom:8px;transition:all .3s ease}.step-label{font-size:.95rem;color:var(--light-text);text-align:center}.progress-step.active .step-number{background-color:var(--primary-color);color:#fff}.progress-step.active .step-label{color:var(--primary-color);font-weight:600}.progress-line{flex-grow:1;height:3px;background-color:#e0e0e0;margin:0 15px;position:relative;top:-12px}.checkout-card{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:25px;margin-bottom:30px}.checkout-card h2{font-size:1.4rem;color:var(--text-color);margin-bottom:20px;padding-bottom:10px;border-bottom:1px solid #eee}.required-note{font-size:.9rem;color:var(--important-color);margin-top:-15px;margin-bottom:25px}.form-group label{display:block;margin-bottom:8px;font-weight:600;color:var(--text-color)}.form-group label.required:after{content:"*";color:var(--important-color);margin-left:5px}.form-group input[type=text],.form-group input[type=email],.form-group input[type=tel],.form-group input[type=number],.form-group select,.form-group textarea{width:100%;padding:12px 15px;border:1px solid #ddd;border-radius:var(--border-radius);font-size:1rem;transition:all .3s ease}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--primary-color);box-shadow:0 0 0 2px #5e8b7e1a;outline:none}.form-row{display:flex;gap:15px}.form-group.half{flex:1}.address-group{display:flex;gap:10px;margin-bottom:10px}.city-select,.district-select{flex:1}.street-address,.shipping-options{margin-top:10px}.shipping-option{display:flex;align-items:center;padding:15px;border:1px solid #ddd;border-radius:var(--border-radius);margin-bottom:10px;cursor:pointer;transition:all .3s ease}.shipping-option:hover{border-color:var(--primary-color);background-color:#5e8b7e0d}.shipping-option.active{border-color:var(--primary-color);background-color:#5e8b7e1a}.option-radio{width:20px;height:20px;border:2px solid #ccc;border-radius:50%;margin-right:15px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.radio-inner{width:10px;height:10px;background-color:var(--primary-color);border-radius:50%}.shipping-option.active .option-radio{border-color:var(--primary-color)}.option-info{flex-grow:1}.option-name{font-weight:600;margin-bottom:5px;color:var(--text-color)}.option-description{font-size:.9rem;color:var(--light-text)}.option-price{font-weight:600;color:var(--important-color);margin-left:15px}.payment-options{margin-top:10px}.payment-option{display:flex;align-items:center;padding:15px;border:1px solid #ddd;border-radius:var(--border-radius);margin-bottom:10px;cursor:pointer;transition:all .3s ease}.payment-option:hover{border-color:var(--primary-color);background-color:#5e8b7e0d}.payment-option.active{border-color:var(--primary-color);background-color:#5e8b7e1a}.payment-icon{margin-left:15px;font-size:1.2rem;color:var(--primary-color)}.credit-card-form{margin-top:20px;padding-top:20px;border-top:1px dashed #ddd}.summary-card{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);padding:25px;position:sticky;top:20px;margin-bottom:30px}.summary-card h2{font-size:1.4rem;color:var(--text-color);margin-bottom:20px;padding-bottom:10px;border-bottom:1px solid #eee}.order-items{max-height:300px;overflow-y:auto;margin-bottom:20px;padding-right:5px}.order-item{display:flex;align-items:center;padding:10px 0;border-bottom:1px solid #f5f5f5}.item-image{width:60px;height:60px;border-radius:var(--border-radius);overflow:hidden;margin-right:15px;position:relative;background-color:#f9f9f9}.item-quantity{position:absolute;top:-8px;right:-8px;width:22px;height:22px;background-color:var(--primary-color);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:600}.item-details{flex-grow:1}.item-name{font-weight:600;margin-bottom:3px;color:var(--text-color)}.item-price{font-weight:600;color:var(--text-color);margin-left:10px}.price-breakdown{padding-top:15px;border-top:1px solid #f5f5f5;margin-bottom:20px}.breakdown-row{display:flex;justify-content:space-between;margin-bottom:12px;font-size:.95rem}.row-label{color:var(--light-text)}.row-value{font-weight:600;color:var(--text-color)}.row-value.discount{color:var(--important-color)}.breakdown-total{display:flex;justify-content:space-between;margin-top:15px;padding-top:15px;border-top:1px solid #eee}.total-label{font-weight:600;font-size:1.1rem;color:var(--text-color)}.total-price{font-weight:700;font-size:1.3rem;color:var(--important-color)}.coupon-input{display:flex;margin-bottom:10px}.coupon-input input{flex-grow:1;padding:10px 15px;border:1px solid #ddd;border-radius:var(--border-radius) 0 0 var(--border-radius);font-size:.95rem}.coupon-input button{padding:0 20px;background-color:var(--secondary-color);color:var(--text-color);font-weight:600;border:none;border-radius:0 var(--border-radius) var(--border-radius) 0;cursor:pointer;transition:background-color .3s ease}.coupon-input button:hover:not(:disabled){background-color:#95b2a9}.coupon-input button:disabled{background-color:#e0e0e0;cursor:not-allowed}.coupon-message{font-size:.9rem;margin:5px 0 15px;color:var(--primary-color)}.terms-agreement{display:flex;align-items:flex-start;margin:20px 0}.terms-agreement input[type=checkbox]{margin-right:10px;margin-top:3px}.terms-agreement label{font-size:.9rem;line-height:1.4}.terms-agreement a{color:var(--primary-color);text-decoration:underline}.btn-checkout{display:block;width:100%;padding:12px 0;margin-bottom:15px;background-color:var(--primary-color);color:#fff;border:none;border-radius:var(--border-radius);font-size:1.1rem;font-weight:600;text-align:center;cursor:pointer;transition:all .3s ease}.btn-checkout:hover:not(:disabled){background-color:#4a7164;transform:translateY(-2px);box-shadow:0 4px 10px #0000001a}.btn-checkout:disabled{background-color:#a7c4bc;cursor:not-allowed}.btn-continue-shopping{display:block;width:100%;padding:12px 0;background-color:transparent;color:var(--primary-color);border:1px solid var(--primary-color);border-radius:var(--border-radius);font-size:1rem;font-weight:600;text-align:center;cursor:pointer;transition:all .3s ease}.btn-continue-shopping:hover{background-color:#5e8b7e0d}.security-info{margin-top:30px;padding:20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.security-item{display:flex;align-items:center;margin-bottom:15px}.security-item:last-child{margin-bottom:0}.security-item i{font-size:1.3rem;color:var(--primary-color);margin-right:15px}.security-text h3{font-size:1.1rem;margin-bottom:5px}.security-text p{font-size:.9rem;color:var(--light-text);margin:0}@media (max-width: 1024px){.checkout-layout{gap:20px}}@media (max-width: 768px){.checkout-layout{grid-template-columns:1fr}.checkout-progress{padding:15px 10px}.step-number{width:35px;height:35px;font-size:.9rem}.step-label{font-size:.85rem}.progress-line{margin:0 5px}.form-row{flex-direction:column;gap:20px}.summary-card{position:static}}@media (max-width: 576px){.checkout-card,.summary-card{padding:15px}.address-group{flex-direction:column;gap:10px}.shipping-option,.payment-option{padding:10px}.option-radio{margin-right:10px}.option-name{font-size:.95rem}.option-description{font-size:.8rem}}.page-header{background-color:var(--primary-color);color:#fff;padding:60px 0;text-align:center;margin-bottom:0}.page-header h1{font-size:2.5rem;margin-bottom:16px;font-weight:700}.page-header p{font-size:1.2rem;max-width:600px;margin:0 auto;opacity:.9}.orders-list{padding:40px 0}.status-tabs{display:flex;margin-bottom:24px;border-bottom:1px solid #e9ecef;overflow-x:auto;padding-bottom:2px}.status-tab{padding:10px 16px;margin-right:8px;border:none;background:none;font-weight:500;color:var(--light-text);cursor:pointer;white-space:nowrap;position:relative}.status-tab:hover{color:var(--text-color)}.status-tab.active{color:var(--primary-color);font-weight:600}.status-tab.active:after{content:"";position:absolute;bottom:-2px;left:0;width:100%;height:3px;background-color:var(--primary-color);border-radius:3px 3px 0 0}.tab-count{display:inline-flex;align-items:center;justify-content:center;min-width:18px;height:18px;padding:0 6px;margin-left:5px;background-color:#e9ecef;color:var(--light-text);border-radius:9px;font-size:.75rem;font-weight:600}.active .tab-count{background-color:var(--primary-color);color:#fff}.sorting-controls{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding:16px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.order-count{font-size:.95rem;color:var(--light-text)}.sort-dropdown{display:flex;align-items:center}.sort-dropdown label{margin-right:8px;color:var(--text-color);font-size:.95rem}.sort-select{padding:8px 12px;border:1px solid #ddd;border-radius:var(--border-radius);font-size:.9rem}.no-results{text-align:center;padding:60px 20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.no-results-icon{margin-bottom:16px;color:#bdc3c7;font-size:3rem}.no-results h3{font-size:1.5rem;color:var(--text-color);margin-bottom:12px}.no-results p{color:var(--light-text);margin-bottom:24px;max-width:400px;margin-left:auto;margin-right:auto}.no-results-actions{display:flex;justify-content:center;gap:16px}.orders-list-content{margin-bottom:40px}.order-card{background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow);margin-bottom:24px;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}.order-card:hover{transform:translateY(-5px);box-shadow:0 8px 16px #0000001f}.order-header{display:flex;justify-content:space-between;align-items:center;padding:16px;background-color:#f8f9fa;border-bottom:1px solid #e9ecef}.order-top-info{display:flex;gap:24px}.order-id,.order-date{display:flex;align-items:center}.label{color:var(--light-text);font-size:.9rem;margin-right:6px}.value{font-weight:600;color:var(--text-color)}.order-status{padding:6px 12px;border-radius:var(--border-radius);font-size:.85rem;font-weight:600;text-align:center}.order-status.pending{background-color:#fff3cd;color:#856404}.order-status.processing{background-color:#cff4fc;color:#055160}.order-status.shipped,.order-status.delivered{background-color:#d1e7dd;color:#0f5132}.order-status.cancelled{background-color:#f8d7da;color:#842029}.order-items{padding:16px;border-bottom:1px solid #e9ecef}.order-item{display:flex;align-items:center;padding:12px 0;border-bottom:1px solid #f5f5f5}.item-image{width:70px;height:70px;border-radius:var(--border-radius);overflow:hidden;margin-right:16px;flex-shrink:0;background-color:#f8f9fa}.item-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.item-details{flex-grow:1;min-width:0}.item-name{font-size:1rem;font-weight:600;margin:0 0 6px;color:var(--text-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.item-variant{font-size:.85rem;color:var(--light-text);margin:0 0 6px}.item-price-qty{display:flex;font-size:.9rem;color:var(--light-text)}.item-qty{margin-left:10px}.item-subtotal{font-weight:600;color:var(--text-color);flex-shrink:0;margin-left:16px}.order-footer{display:flex;justify-content:space-between;align-items:center;padding:16px}.order-summary{display:flex;flex-direction:column;gap:6px}.summary-item{display:flex;align-items:center}.summary-label{color:var(--light-text);font-size:.9rem;margin-right:6px}.summary-value{font-weight:600;color:var(--text-color)}.summary-value.total{font-size:1.1rem;color:var(--important-color)}.order-actions{display:flex;gap:10px}.btn-view,.btn-review,.btn-cancel,.btn-track,.btn-pay{padding:8px 16px;border-radius:var(--border-radius);font-weight:500;font-size:.9rem;cursor:pointer;transition:all .2s ease;border:none}.btn-view{background-color:transparent;color:var(--primary-color);border:1px solid var(--primary-color)}.btn-view:hover{background-color:#5e8b7e1a}.btn-review{background-color:var(--secondary-color);color:var(--text-color)}.btn-review:hover{background-color:#95b2a9}.btn-cancel{background-color:transparent;color:var(--important-color);border:1px solid var(--important-color)}.btn-cancel:hover{background-color:#e74c3c1a}.btn-track{background-color:var(--accent-color);color:var(--text-color)}.btn-track:hover{background-color:#c9aa5e}.btn-pay{background-color:var(--primary-color);color:#fff}.btn-pay:hover{background-color:#4a7164}.pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:40px}.page-control{background-color:#fff;border:1px solid #ddd;padding:8px 16px;border-radius:var(--border-radius);color:var(--primary-color);font-size:.9rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center}.page-control:hover{background-color:#f7fbfe}.page-control:disabled{color:#bdc3c7;cursor:not-allowed;background-color:#f5f5f5}.page-control i{font-size:.8rem}.page-numbers{display:flex;gap:6px}.page-number{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;font-size:.95rem;border:1px solid #ddd;background-color:#fff;color:#666;cursor:pointer;transition:all .2s ease}.page-number:hover{background-color:#f7fbfe;color:var(--primary-color)}.page-number.active{background-color:var(--primary-color);color:#fff;border-color:var(--primary-color)}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000}.modal-container{background-color:#fff;border-radius:var(--border-radius);width:95%;max-width:500px;box-shadow:var(--box-shadow);overflow:hidden}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:16px 24px;border-bottom:1px solid #e9ecef}.modal-header h3{font-size:1.25rem;font-weight:600;color:var(--text-color);margin:0}.close-button{background:none;border:none;font-size:1.5rem;color:var(--light-text);cursor:pointer}.close-button:hover{color:var(--text-color)}.modal-body{padding:24px}.text-warning{color:var(--important-color);font-weight:600;margin:16px 0 8px}.warning-list{padding-left:24px;margin:0;color:var(--light-text)}.warning-list li{margin-bottom:8px}.modal-footer{display:flex;justify-content:flex-end;gap:12px;padding:16px 24px;border-top:1px solid #e9ecef;background-color:#f8f9fa}@media (max-width: 992px){.order-footer{flex-direction:column;align-items:flex-start;gap:16px}.order-actions{width:100%;justify-content:flex-end}}@media (max-width: 768px){.page-header{padding:40px 0}.page-header h1{font-size:2rem}.order-top-info{flex-direction:column;gap:8px}.order-header{flex-direction:column;gap:12px;align-items:flex-start}.order-status{align-self:flex-start}.order-item{flex-direction:column;align-items:flex-start}.item-image{margin-bottom:12px}.item-subtotal{margin-left:0;margin-top:12px;align-self:flex-end}.order-actions{flex-wrap:wrap}}@media (max-width: 576px){.status-tabs{padding-bottom:8px}.status-tab{padding:8px 12px;font-size:.9rem}.sorting-controls{flex-direction:column;align-items:flex-start;gap:12px}.no-results-actions{flex-direction:column;gap:12px}.order-actions button{flex:1}}.exchange-request-section{padding:60px 0;background-color:var(--background-color)}.exchange-request-layout{display:grid;grid-template-columns:2fr 1fr;gap:30px}.my-campsite-info{display:flex;gap:20px}.campsite-image{width:120px;height:90px;border-radius:var(--border-radius);overflow:hidden;flex-shrink:0}.campsite-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.campsite-details{flex:1}.campsite-details h3{margin-bottom:10px;color:var(--text-color)}.campsite-meta{display:flex;flex-direction:column;gap:8px}.search-form,.search-input-group{margin-bottom:20px}.input-with-button{display:flex;gap:10px}.search-input,.form-input,.form-textarea{flex:1;padding:12px 15px;border:1px solid #ddd;border-radius:var(--border-radius);font-size:1rem;transition:all .3s ease}.search-input:focus,.form-input:focus,.form-textarea:focus{border-color:var(--primary-color);box-shadow:0 0 0 2px #5e8b7e1a;outline:none}.btn-search{padding:12px 20px;background-color:var(--primary-color);color:#fff;border:none;border-radius:var(--border-radius);font-weight:600;cursor:pointer;transition:all .3s ease;white-space:nowrap;display:flex;align-items:center;gap:8px}.btn-search:hover:not(:disabled){background-color:#4a7164}.btn-search:disabled{background-color:#a7c4bc;cursor:not-allowed}.search-result{margin-top:20px;padding-top:20px;border-top:1px solid #eee}.search-result h3{margin-bottom:15px;color:var(--text-color)}.user-info-card{display:flex;align-items:center;padding:20px;background-color:#f8f9fa;border-radius:var(--border-radius);margin-bottom:20px}.user-avatar{width:70px;height:70px;border-radius:50%;overflow:hidden;margin-right:20px;flex-shrink:0}.user-avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.user-details h4{margin-bottom:5px;color:var(--text-color)}.user-details p{color:var(--light-text);margin-bottom:10px}.user-stats{display:flex;gap:20px}.stat-item{display:flex;align-items:center;font-size:.9rem;color:var(--light-text)}.stat-item i{margin-right:5px;color:var(--primary-color)}.target-campsite-info{margin-top:20px}.target-campsite-info h4{margin-bottom:15px;color:var(--text-color)}.campsite-card{display:flex;padding:15px;border:1px solid #ddd;border-radius:var(--border-radius);background-color:#fff}.campsite-image-small{width:80px;height:60px;border-radius:var(--border-radius);overflow:hidden;margin-right:15px;flex-shrink:0}.campsite-image-small img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.campsite-details-small h5{margin-bottom:8px;color:var(--text-color)}.campsite-details-small .meta-item{margin-bottom:5px}.no-campsite-message{display:flex;align-items:center;padding:20px;background-color:#fff3cd;border-radius:var(--border-radius);color:#856404;margin-top:20px}.no-campsite-message i{margin-right:10px}.exchange-form{margin-top:20px}.form-group{margin-bottom:20px}.form-textarea{resize:vertical;min-height:100px}.checkbox-group{margin-bottom:25px}.checkbox-label{display:flex;align-items:flex-start;cursor:pointer;font-size:.95rem;line-height:1.5}.checkbox-label input[type=checkbox]{margin-right:10px;margin-top:3px;width:18px;height:18px;cursor:pointer}.checkmark{position:relative;margin-right:8px}.terms-link{color:var(--primary-color);text-decoration:underline}.terms-link:hover{color:var(--accent-color)}.form-actions{display:flex;gap:15px;justify-content:flex-end}.info-sidebar,.process-steps{display:flex;flex-direction:column;gap:20px}.step-item{display:flex;align-items:flex-start;position:relative}.step-item:not(:last-child):after{content:"";position:absolute;left:18px;top:40px;width:2px;height:calc(100% + 5px);background-color:#e0e0e0}.step-number{width:36px;height:36px;background-color:var(--primary-color);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;margin-right:15px;flex-shrink:0;position:relative;z-index:1}.step-content h4{margin-bottom:5px;color:var(--text-color);font-size:1.1rem}.step-content p{color:var(--light-text);font-size:.95rem;line-height:1.5;margin:0}.notice-card{background-color:#f8f9fa;border-left:4px solid var(--accent-color)}.notice-list{list-style:none;padding:0;margin:0}.notice-list li{display:flex;align-items:flex-start;margin-bottom:15px;font-size:.95rem;line-height:1.5}.notice-list li:last-child{margin-bottom:0}.notice-list li i{margin-right:10px;margin-top:2px;color:var(--accent-color);flex-shrink:0}.faq-card{border:1px solid #e0e0e0}.faq-list{display:flex;flex-direction:column}.faq-item{border-bottom:1px solid #f0f0f0}.faq-item:last-child{border-bottom:none}.faq-question{display:flex;justify-content:space-between;align-items:center;padding:15px 0;cursor:pointer;font-weight:600;color:var(--text-color);transition:color .3s ease}.faq-question:hover{color:var(--primary-color)}.faq-question i{transition:transform .3s ease;color:var(--light-text)}.faq-question i.rotated{transform:rotate(180deg)}.faq-answer{padding-bottom:15px;color:var(--light-text);line-height:1.6}.faq-answer p{margin:0}.success-modal .modal-body{text-align:center;padding:30px}.success-icon{font-size:4rem;color:var(--success-color);margin-bottom:20px}.success-modal h4{color:var(--text-color);margin-bottom:15px;font-size:1.3rem}.success-modal p{color:var(--light-text);margin-bottom:15px;line-height:1.6}.icon-tent:before{content:""}.icon-send:before{content:""}.icon-loading:before{content:"";animation:spin 1s linear infinite}.icon-info:before{content:""}.icon-warning:before{content:""}.icon-rules:before{content:""}.icon-clock:before{content:""}.icon-star:before{content:""}.icon-chevron-down:before{content:""}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@media (max-width: 992px){.exchange-request-layout{grid-template-columns:1.5fr 1fr;gap:20px}.my-campsite-info{flex-direction:column;gap:15px}.campsite-image{width:100%;height:150px}}@media (max-width: 768px){.exchange-request-layout{grid-template-columns:1fr}.info-sidebar{order:-1;margin-bottom:20px}.input-with-button{flex-direction:column;gap:10px}.btn-search{width:100%;justify-content:center}.user-info-card{flex-direction:column;text-align:center}.user-avatar{margin:0 auto 15px}.user-stats{justify-content:center}.campsite-card{flex-direction:column}.campsite-image-small{width:100%;height:120px;margin-right:0;margin-bottom:15px}.form-actions{flex-direction:column}.form-actions button{width:100%}.step-item{flex-direction:column;text-align:center}.step-item:after{display:none}.step-number{margin:0 auto 15px}.modal-footer{flex-direction:column}.modal-footer button{width:100%}}@media (max-width: 576px){.exchange-request-section{padding:40px 0}.content-card,.sidebar-card{padding:20px 15px}.success-modal .modal-body{padding:20px}.modal-header,.modal-footer{padding:15px 20px}.faq-question{font-size:.95rem}.user-stats{flex-direction:column;gap:10px}}.registration-complete-section{padding:60px 0;background-color:var(--background-color, #f9f7f1)}.registration-complete-layout{display:grid;grid-template-columns:2fr 1fr;gap:30px}.content-card{background-color:#fff;border-radius:8px;box-shadow:0 2px 10px #0000000d;margin-bottom:30px;padding:25px}.content-card h2{color:#2c3e50;margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #eaeaea;font-size:1.5rem}.success-message{text-align:center;padding:40px 25px;background-color:#f8fdfb;border-top:4px solid #2ecc71}.success-icon{font-size:4rem;color:#2ecc71;margin-bottom:20px}.success-message h2{color:#2ecc71;border-bottom:none;margin-bottom:15px;padding-bottom:0}.success-message p{color:#555;font-size:1.1rem;max-width:600px;margin:0 auto 10px}.order-info,.registrant-info{border:1px solid #eaeaea;border-radius:6px;overflow:hidden}.order-row,.info-row{display:flex;border-bottom:1px solid #eaeaea;background-color:#fff}.order-row:last-child,.info-row:last-child{border-bottom:none}.order-label,.info-label{flex:0 0 120px;padding:12px 15px;background-color:#f8f9fa;font-weight:500}.order-value,.info-value{flex:1;padding:12px 15px}.text-success{color:#2ecc71}.text-warning{color:#f39c12}.text-danger{color:#e74c3c}.merchandise-list{margin-top:15px}.merchandise-item{display:flex;align-items:center;padding:15px 0;border-bottom:1px solid #eaeaea}.merchandise-item:last-child{border-bottom:none}.merchandise-image{width:80px;height:80px;background-color:#f5f5f5;margin-right:15px;border-radius:6px;overflow:hidden;display:flex;align-items:center;justify-content:center}.merchandise-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.merchandise-info{flex-grow:1}.merchandise-name{font-weight:700;margin-bottom:5px;color:#2c3e50}.merchandise-desc{font-size:.9rem;color:#6c757d;margin-bottom:5px}.price-and-quantity{display:flex;justify-content:space-between}.merchandise-price{color:#e74c3c;font-weight:700}.merchandise-quantity{color:#6c757d}.next-steps{background-color:#f8f9fa}.step-list{margin-top:20px}.step-item{display:flex;margin-bottom:25px;position:relative}.step-item:last-child{margin-bottom:0}.step-item:not(:last-child):after{content:"";position:absolute;top:35px;left:18px;width:2px;height:calc(100% - 10px);background-color:#ddd}.step-number{flex:0 0 36px;height:36px;background-color:#3498db;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.1rem;margin-right:15px;position:relative;z-index:1}.step-content{flex:1}.step-content h3{margin-bottom:5px;font-size:1.2rem;color:#2c3e50}.step-content p{color:#6c757d;margin-bottom:0}.step-content a{color:#3498db;text-decoration:none}.step-content a:hover{text-decoration:underline}.sidebar-card{background:#fff;border-radius:8px;box-shadow:0 2px 10px #0000000d;padding:25px;margin-bottom:25px;position:sticky;top:20px}.sidebar-card h2{color:#2c3e50;margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #eaeaea;font-size:1.5rem}.sidebar-card h3{font-size:1.3rem;margin-bottom:15px;color:#2c3e50}.event-summary{display:flex;margin-bottom:20px}.event-image{width:100px;margin-right:15px;border-radius:4px;overflow:hidden;flex-shrink:0}.event-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.event-basic-info h3{margin-bottom:10px;font-size:1.1rem;color:#2c3e50;border-bottom:none;padding-bottom:0}.meta-item{display:flex;align-items:center;font-size:.9rem;color:#6c757d;margin-bottom:5px}.meta-item i{margin-right:8px;color:#3498db}.price-breakdown{margin-top:15px;border-top:1px solid #eaeaea;padding-top:15px}.breakdown-item{display:flex;justify-content:space-between;margin-bottom:10px;font-size:.95rem}.breakdown-total{display:flex;justify-content:space-between;margin-top:15px;padding-top:15px;border-top:1px solid #eaeaea;font-weight:700;font-size:1.1rem;color:#2c3e50}.action-buttons{margin-top:25px;display:flex;flex-direction:column;gap:10px}.btn-block{width:100%;padding:12px;border-radius:6px;font-weight:600;font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s ease}.btn-block i{margin-right:8px}.btn-primary{background-color:#3498db;color:#fff;border:none}.btn-primary:hover{background-color:#2980b9;box-shadow:0 4px 10px #3498db4d}.btn-secondary{background-color:#ecf0f1;color:#2c3e50;border:none}.btn-secondary:hover{background-color:#dde4e6;box-shadow:0 4px 10px #ecf0f180}.btn-outline{background-color:transparent;color:#3498db;border:1px solid #3498db}.btn-outline:hover{background-color:#f4f9fd;box-shadow:0 4px 10px #3498db26}.support-card{background-color:#f8f9fa;border-left:4px solid #3498db}.support-card p{color:#6c757d;margin-bottom:15px}.support-contact{margin-top:15px}.contact-item{display:flex;align-items:center;margin-bottom:10px}.contact-item i{margin-right:10px;color:#3498db;width:20px;text-align:center}[class^=icon-]{font-family:"Font Awesome 5 Free";font-weight:900}.icon-check-circle:before{content:""}.icon-calendar:before{content:""}.icon-location:before{content:""}.icon-email:before{content:""}.icon-phone:before{content:""}.icon-download:before{content:""}.icon-list:before{content:""}.icon-search:before{content:""}@media (max-width: 992px){.registration-complete-layout{grid-template-columns:1.5fr 1fr;gap:20px}}@media (max-width: 768px){.registration-complete-layout{grid-template-columns:1fr}.order-summary-area{order:-1}.sidebar-card{position:static;margin-bottom:30px}}@media (max-width: 576px){.order-row,.info-row{flex-direction:column}.order-label,.info-label{padding:10px 15px 5px;flex:0}.order-value,.info-value{padding:5px 15px 10px}}.floating-cart{position:fixed;right:30px;bottom:170px;z-index:999;transition:all .3s ease;animation:fadeInUp .5s ease .5s both}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.floating-cart.expanded{transform:translate(0)}.cart-toggle{position:relative;width:60px;height:60px;background-color:var(--primary-color);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 15px #0003;transition:all .3s ease;margin-bottom:10px;animation:cartBounce 3s ease-in-out infinite}@keyframes cartBounce{0%,20%,50%,80%,to{transform:translateY(0)}40%{transform:translateY(-3px)}60%{transform:translateY(-2px)}}.cart-toggle:hover{background-color:#4a7164;transform:scale(1.1) translateY(0)!important;animation:none}.cart-toggle i{font-size:1.5rem;color:#fff}.cart-count{position:absolute;top:-5px;right:-5px;background-color:var(--important-color);color:#fff;border-radius:50%;width:25px;height:25px;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:600;animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}.cart-content{position:absolute;right:0;bottom:80px;width:350px;max-height:500px;background-color:#fff;border-radius:var(--border-radius);box-shadow:0 8px 25px #00000026;overflow:hidden;animation:slideInRight .3s ease}@keyframes slideInRight{0%{opacity:0;transform:translate(20px)}to{opacity:1;transform:translate(0)}}.cart-header{display:flex;justify-content:space-between;align-items:center;padding:15px 20px;background-color:var(--primary-color);color:#fff}.cart-header h3{margin:0;font-size:1.2rem;font-weight:600}.close-cart{background:none;border:none;color:#fff;font-size:1.2rem;cursor:pointer;padding:5px;border-radius:50%;transition:all .2s ease}.close-cart:hover{background-color:#fff3}.cart-body{max-height:300px;overflow-y:auto;padding:0}.empty-cart{text-align:center;padding:40px 20px;color:var(--light-text)}.empty-cart i{font-size:3rem;margin-bottom:15px;opacity:.5}.empty-cart p{margin:0;font-size:1rem}.cart-items-list{padding:0}.cart-item{display:flex;align-items:center;padding:15px 20px;border-bottom:1px solid #f0f0f0;transition:background-color .2s ease;gap:10px}.cart-item:hover{background-color:#f8f9fa}.cart-item:last-child{border-bottom:none}.cart-item .item-image{width:50px;height:50px;border-radius:4px;overflow:hidden;flex-shrink:0;background-color:#f5f5f5}.cart-item .item-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .2s ease}.cart-item .item-image img:hover{transform:scale(1.05)}.cart-item .item-details{flex:1;min-width:0}.cart-item .item-name{font-size:.9rem;font-weight:600;margin:0 0 5px;color:var(--text-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;line-height:1.3}.cart-item .item-price{font-size:.85rem;color:var(--important-color);font-weight:600;margin-bottom:8px}.cart-item .item-total{font-size:.9rem;font-weight:600;color:var(--text-color);margin-right:5px;flex-shrink:0}.quantity-controls{display:flex;align-items:center;gap:8px}.quantity-controls button{width:25px;height:25px;background-color:#f0f0f0;border:none;border-radius:4px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.9rem;font-weight:600;transition:all .2s ease}.quantity-controls button:hover{background-color:var(--primary-color);color:#fff}.quantity-controls span{font-size:.9rem;font-weight:600;min-width:20px;text-align:center}.remove-item{background:none;border:none;color:var(--light-text);cursor:pointer;padding:8px;border-radius:4px;transition:all .2s ease;flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center}.remove-item:hover{color:var(--important-color);background-color:#fee;transform:scale(1.1)}.remove-item i{font-size:.8rem}.cart-footer{border-top:1px solid #f0f0f0;padding:15px 20px;background-color:#f8f9fa}.cart-total{text-align:center;margin-bottom:15px;font-size:1.1rem;color:var(--text-color)}.cart-meta{font-size:.85rem;color:var(--light-text);font-weight:400;margin-top:5px}.cart-actions{display:flex;gap:10px;margin-bottom:10px}.cart-management{display:flex;justify-content:center;margin-top:10px;padding-top:10px;border-top:1px solid #e9ecef}.btn-clear-cart{background:none;border:none;color:var(--light-text);cursor:pointer;font-size:.8rem;padding:5px 10px;border-radius:4px;transition:all .2s ease;display:flex;align-items:center;gap:5px}.btn-clear-cart:hover{color:var(--important-color);background-color:#e74c3c1a}.btn-view-cart,.btn-checkout{flex:1;padding:10px 0;border-radius:var(--border-radius);font-weight:600;font-size:.9rem;cursor:pointer;transition:all .3s ease;text-align:center;border:none}.btn-view-cart{background-color:#fff;color:var(--primary-color);border:1px solid var(--primary-color)}.btn-view-cart:hover{background-color:#5e8b7e1a}.btn-checkout{background-color:var(--primary-color);color:#fff}.btn-checkout:hover{background-color:#4a7164}.quick-add-section{margin-top:10px}.quick-add-btn{width:60px;height:40px;background-color:var(--accent-color);color:var(--text-color);border:none;border-radius:20px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.8rem;font-weight:600;transition:all .3s ease;box-shadow:0 2px 8px #0000001a;overflow:hidden;white-space:nowrap}.quick-add-btn:hover{background-color:#c9aa5e;width:120px}.quick-add-btn i{margin-right:5px;transition:all .3s ease}.quick-add-btn span{opacity:0;transition:all .3s ease;width:0}.quick-add-btn:hover span{opacity:1;width:auto}.cart-success-message{position:fixed;top:100px;right:30px;background-color:var(--success-color);color:#fff;padding:15px 20px;border-radius:var(--border-radius);box-shadow:0 4px 15px #0003;z-index:1001;animation:slideInFromRight .3s ease,fadeOut .3s ease 2.7s;font-weight:500;font-size:.9rem;min-width:200px;max-width:300px}.cart-success-message i{color:#fff}@keyframes slideInFromRight{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}@keyframes fadeOut{0%{opacity:1;transform:translate(0)}to{opacity:0;transform:translate(100%)}}@media (max-width: 768px){.floating-cart{right:20px;bottom:150px}.cart-content{width:300px;right:-10px}.cart-toggle{width:50px;height:50px}.cart-toggle i{font-size:1.3rem}.cart-count{width:22px;height:22px;font-size:.75rem}}@media (max-width: 576px){.floating-cart{right:15px;bottom:140px}.cart-content{width:280px;right:-15px}.cart-actions{flex-direction:column;gap:8px}.quick-add-btn{width:50px;height:35px;font-size:.75rem}.quick-add-btn:hover{width:100px}.cart-success-message{right:15px;font-size:.8rem;padding:10px 15px}}.empty-cart{text-align:center;padding:80px 20px;background-color:#fff;border-radius:var(--border-radius);box-shadow:var(--box-shadow)}.empty-cart-icon{font-size:4rem;color:#bdc3c7;margin-bottom:20px}.empty-cart h2{font-size:1.8rem;color:var(--text-color);margin-bottom:10px}.empty-cart p{color:var(--light-text);margin-bottom:30px;max-width:500px;margin-left:auto;margin-right:auto}.coupon-message.success{color:var(--success-color)}.coupon-message.error{color:var(--important-color)}.error-message{color:var(--important-color);font-size:.85rem;margin-top:5px}.order-item{display:flex;align-items:center;padding:15px 0;border-bottom:1px solid #f0f0f0}.order-item:last-child{border-bottom:none}.item-image{position:relative;width:60px;height:60px;flex-shrink:0;margin-right:15px}.item-image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:4px}.item-quantity{position:absolute;top:-8px;right:-8px;background-color:var(--primary-color);color:#fff;border-radius:50%;width:22px;height:22px;font-size:.8rem;font-weight:600;display:flex;align-items:center;justify-content:center}.item-details{flex:1;min-width:0}.item-name{font-size:.95rem;font-weight:600;margin-bottom:3px;color:var(--text-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.item-variant{font-size:.85rem;color:var(--light-text)}.item-price{font-weight:600;color:var(--text-color);margin-left:10px;flex-shrink:0}@media (max-width: 768px){.checkout-layout{grid-template-columns:1fr}.order-summary-area{order:-1}.empty-cart{padding:60px 20px}.empty-cart h2{font-size:1.5rem}}@media (max-width: 576px){.item-name,.item-price{font-size:.9rem}.order-item{padding:12px 0}}
