@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap";:root{--color-bg-blue: #A8C0D8;--color-box-white: #FFFFFF;--color-text-black: #000000;--color-text-dark-gray: #333333;--font-main: "Outfit", sans-serif;--spacing-unit: 1rem;--border-radius: 16px}*{box-sizing:border-box;margin:0;padding:0}body{font-family:var(--font-main);background-color:var(--color-bg-blue);color:var(--color-text-black);line-height:1.5;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;min-height:100vh}a{text-decoration:none;color:inherit}ul{list-style:none}button{font-family:inherit;cursor:pointer;border:none;background:none}.app-container{min-height:100vh;display:flex;flex-direction:column}.main-content{flex:1;padding:2rem;max-width:1400px;margin:0 auto;width:100%}.header{width:100%;padding:1.5rem 2rem}.header-content{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}.logo-container{display:flex;align-items:center;gap:.75rem}.logo-icon{font-size:2rem}.logo-image{height:50px;width:50px;border-radius:50%;object-fit:cover;margin-right:10px}.logo-text{font-size:1.75rem;font-weight:600;color:var(--color-text-black);letter-spacing:-.02em}.nav-menu{display:flex;gap:2.5rem}.nav-link{font-size:1.125rem;font-weight:500;color:var(--color-text-black);transition:opacity .2s}.nav-link:hover{opacity:.7;text-decoration:underline}.cart-link{position:relative;display:flex;align-items:center}.cart-badge{background-color:#ff5252;color:#fff;font-size:.75rem;font-weight:700;height:18px;min-width:18px;border-radius:9px;display:flex;align-items:center;justify-content:center;position:absolute;top:-8px;right:-12px;padding:0 4px}.footer{width:100%;padding:2rem 2rem 3rem;margin-top:auto}.footer-content{max-width:1400px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1.5rem;border-top:1px solid rgba(0,0,0,.1);padding-top:2rem}.social-links{display:flex;gap:2rem}.social-icon{color:var(--color-text-black);transition:transform .2s;display:flex;align-items:center;justify-content:center}.social-icon:hover{transform:scale(1.1)}.copyright{display:flex;flex-direction:column;align-items:center;gap:.5rem;font-size:.9rem;color:var(--color-text-dark-gray);text-align:center}.copyright-link{font-weight:500;text-decoration:underline;cursor:pointer}.copyright-link:hover{color:var(--color-text-black)}.chat-widget-container{position:fixed;bottom:2rem;right:2rem;z-index:1000;font-family:Inter,sans-serif}.chat-bubble-btn{width:60px;height:60px;border-radius:50%;background-color:var(--color-text-black);color:#fff;border:none;box-shadow:0 4px 12px #00000026;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.5rem;transition:transform .2s,background-color .2s}.chat-bubble-btn:hover{transform:scale(1.05);background-color:#333}.chat-window{position:absolute;bottom:80px;right:0;width:350px;height:500px;background-color:#fff;border-radius:16px;box-shadow:0 8px 24px #00000026;display:flex;flex-direction:column;overflow:hidden;animation:slideUp .3s ease-out;border:1px solid #eee}@keyframes slideUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.chat-header{background-color:var(--color-text-black);color:#fff;padding:1rem;display:flex;justify-content:space-between;align-items:center}.chat-header h3{margin:0;font-size:1rem;font-weight:600}.close-chat-btn{background:transparent;border:none;color:#fff;font-size:1.2rem;cursor:pointer;padding:0;line-height:1}.chat-messages{flex:1;padding:1rem;overflow-y:auto;display:flex;flex-direction:column;gap:1rem;background-color:#f8fafd}.message{max-width:80%;padding:.75rem 1rem;border-radius:12px;font-size:.95rem;line-height:1.4}.message.assistant{align-self:flex-start;background-color:#fff;border:1px solid #eef2f6;border-top-left-radius:2px;color:var(--color-text-black)}.message.user{align-self:flex-end;background-color:var(--color-text-black);color:#fff;border-top-right-radius:2px}.typing-indicator{font-size:.8rem;color:#888;margin-left:.5rem}.chat-input-area{padding:1rem;background-color:#fff;border-top:1px solid #eee;display:flex;gap:.5rem}.chat-input-area input{flex:1;padding:.75rem;border:1px solid #ddd;border-radius:24px;outline:none;font-size:.95rem;transition:border-color .2s}.chat-input-area input:focus{border-color:var(--color-text-black)}.send-btn{background-color:var(--color-text-black);color:#fff;border:none;width:40px;height:40px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background-color .2s}.send-btn:hover{background-color:#333}.send-btn:disabled{background-color:#ccc;cursor:not-allowed}@media(max-width:480px){.chat-window{width:calc(100vw - 2rem);right:-1rem;height:60vh}}.product-card{display:flex;flex-direction:column;align-items:center;gap:.75rem;background:#fff;padding:1rem;border-radius:12px;transition:transform .2s,box-shadow .2s;width:100%;box-sizing:border-box}.product-card:hover{transform:translateY(-4px);box-shadow:0 4px 12px #00000014}.product-image-container{width:100%;aspect-ratio:1;display:flex;align-items:center;justify-content:center;border-radius:8px;overflow:hidden;background-color:#f0f4f8;margin-bottom:.5rem}.product-image{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.product-card:hover .product-image{transform:scale(1.05)}.placeholder-circle{width:60%;height:60%;border-radius:50%;opacity:.8}.product-info{display:flex;flex-direction:column;align-items:center;text-align:center;width:100%}.product-name{font-weight:600;font-size:1rem;color:var(--color-text-black);margin:0}.product-price{font-size:.95rem;color:var(--color-text-dark-gray);margin-top:.25rem}.add-to-cart-btn{background-color:transparent;border:1px solid var(--color-text-black);color:var(--color-text-black);padding:.5rem 1rem;border-radius:20px;font-size:.9rem;font-weight:500;margin-top:.5rem;transition:all .2s;width:100%;cursor:pointer}.add-to-cart-btn:hover{background-color:var(--color-text-black);color:#fff}.image-modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#000000d9;display:flex;justify-content:center;align-items:center;z-index:1000;padding:2rem;animation:fadeIn .2s ease-in-out}.image-modal-content{position:relative;max-width:90%;max-height:90%;display:flex;justify-content:center;align-items:center}.image-modal-content img{max-width:100%;max-height:90vh;object-fit:contain;border-radius:8px;box-shadow:0 4px 20px #00000080}.watermark-overlay{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-45deg);font-size:4rem;font-weight:900;color:#ffffff80;opacity:.2;pointer-events:none;white-space:nowrap;z-index:10;text-shadow:0 0 10px rgba(0,0,0,.5);-webkit-user-select:none;user-select:none}.close-modal-btn{position:absolute;top:-40px;right:-40px;background:transparent;border:none;color:#fff;font-size:3rem;cursor:pointer;line-height:1;transition:transform .2s}.close-modal-btn:hover{transform:scale(1.1)}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@media(max-width:600px){.close-modal-btn{top:-40px;right:0}.watermark-overlay{font-size:2rem}}.hero-section{display:flex;flex-direction:column;gap:2rem;width:100%}.top-row{display:grid;grid-template-columns:1fr 1fr;gap:2rem;width:100%}@media(max-width:900px){.top-row{grid-template-columns:1fr}}.content-box{background-color:var(--color-box-white);border-radius:var(--border-radius);padding:2rem;box-shadow:0 4px 12px #0000000d;display:flex;flex-direction:column}.section-title{font-size:1.75rem;font-weight:700;margin-bottom:1.5rem;text-align:center;color:var(--color-text-black)}.sticker-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}.custom-list{display:flex;flex-direction:column;gap:1.5rem;flex:1}.custom-row{background-color:#f8fafd;border-radius:12px;padding:1rem;display:grid;grid-template-columns:1fr auto;grid-template-rows:auto auto;gap:.5rem;align-items:center}.custom-text h3{font-size:1.1rem;font-weight:600}.custom-text p{font-size:.9rem;color:var(--color-text-dark-gray)}.custom-visual{grid-column:2;grid-row:1 / span 2;font-size:2.5rem;background:#eef3f8;width:80px;height:80px;border-radius:50%;display:flex;align-items:center;justify-content:center}.pet-visual{width:auto;height:120px;background:transparent;border-radius:0;gap:1.5rem;display:flex;align-items:center;grid-row:1 / span 2}.pet-visual img{height:100%;width:auto;object-fit:cover;border-radius:8px;box-shadow:0 2px 4px #0000001a}.action-btn{grid-column:1;justify-self:start;background-color:var(--color-text-black);color:#fff;padding:.5rem 1rem;border-radius:20px;font-size:.9rem;font-weight:500;margin-top:.5rem;text-decoration:none;display:inline-block;border:none;cursor:pointer}.action-btn:hover{opacity:.9;transform:translateY(-1px)}.group-orders{margin-top:2rem}.group-content{display:flex;justify-content:space-around;text-align:center;margin-bottom:2rem;gap:2rem}.group-item{flex:1;display:flex;flex-direction:column;align-items:center;gap:.5rem}.group-image-container{width:120px;height:120px;margin-bottom:1rem;border-radius:50%;overflow:hidden;box-shadow:0 4px 8px #0000001a;background:#fff;display:flex;align-items:center;justify-content:center}.group-image{width:100%;height:100%;object-fit:contain;padding:10px}.group-item h3{font-size:1.25rem;font-weight:600}.group-item p{font-size:.95rem;color:var(--color-text-dark-gray);max-width:200px}.group-action{display:flex;justify-content:center}.action-btn.large{padding:.75rem 2rem;font-size:1.1rem}.shop-page{display:flex;gap:3rem;padding-top:1rem}.shop-sidebar{width:250px;flex-shrink:0}.sidebar-title{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem;color:var(--color-text-black)}.filter-list{display:flex;flex-direction:column;gap:.75rem}.filter-list li{cursor:pointer;font-size:1.1rem;color:var(--color-text-dark-gray);transition:color .2s;padding:.5rem 0}.filter-list li:hover{color:var(--color-text-black)}.filter-list li.active{font-weight:600;color:var(--color-text-black);text-decoration:underline}.shop-grid-container{flex:1}.shop-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:2rem}.shop-header h1{font-size:2rem;font-weight:700}.product-count{color:var(--color-text-dark-gray)}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:2rem}@media(max-width:768px){.shop-page{flex-direction:column;gap:2rem}.shop-sidebar{width:100%}.filter-list{flex-direction:row;gap:1.5rem;overflow-x:auto;padding-bottom:.5rem}}.custom-page{padding-bottom:4rem}.custom-header{text-align:center;margin-bottom:4rem;padding:2rem 0}.custom-header h1{font-size:3rem;font-weight:700;margin-bottom:1rem;color:var(--color-text-black)}.custom-header p{font-size:1.25rem;color:var(--color-text-dark-gray)}.custom-section{display:flex;align-items:center;gap:4rem;margin-bottom:4rem;background-color:var(--color-box-white);padding:3rem;border-radius:24px}.custom-section.reverse{flex-direction:row-reverse}.custom-content{flex:1;display:flex;flex-direction:column;gap:1.5rem;align-items:flex-start}.custom-content h2{font-size:2rem;font-weight:600}.custom-content p{font-size:1.1rem;line-height:1.6;color:var(--color-text-dark-gray)}.feature-list{list-style-type:disc;padding-left:1.5rem;color:var(--color-text-dark-gray)}.feature-list li{margin-bottom:.5rem}.pricing-tag{background-color:#e3f2fd;color:#1565c0;padding:.5rem 1rem;border-radius:20px;font-weight:600;font-size:.9rem;display:inline-block}.cta-btn{background-color:var(--color-text-black);color:#fff;padding:.75rem 1.5rem;border-radius:25px;text-decoration:none;font-weight:600;transition:all .2s;display:inline-block;border:none;cursor:pointer}.cta-btn:hover{opacity:.9;transform:translateY(-2px);box-shadow:0 4px 12px #00000026}.custom-page-visual{flex:1;display:flex;gap:1.5rem;justify-content:center}.custom-page-visual img{width:200px;height:200px;object-fit:cover;border-radius:16px;box-shadow:0 4px 12px #0000001a;cursor:pointer;transition:transform .2s}.custom-page-visual img:hover{transform:scale(1.05)}@media(max-width:900px){.custom-section,.custom-section.reverse{flex-direction:column;gap:2rem;padding:2rem}.custom-page-visual{width:100%;justify-content:center}.custom-page-visual img{width:140px;height:140px}}.bulk-page{padding-bottom:4rem}.bulk-header{text-align:center;margin-bottom:3rem;padding:2rem 0}.bulk-header h1{font-size:3rem;font-weight:700;margin-bottom:1rem;color:var(--color-text-black)}.bulk-header p{font-size:1.25rem;color:var(--color-text-dark-gray);margin-bottom:1.5rem}.fundraiser-login-cta{background-color:#e3f2fd;display:inline-flex;align-items:center;gap:1rem;padding:.75rem 1.5rem;border-radius:50px}.login-btn{background-color:var(--color-text-black);color:#fff;padding:.5rem 1rem;border-radius:20px;font-size:.9rem;font-weight:500;text-decoration:none}.bulk-container{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}.bulk-info{display:flex;flex-direction:column;gap:2rem}.info-card{background-color:var(--color-box-white);padding:2rem;border-radius:16px;box-shadow:0 4px 12px #0000000d}.info-card h3{font-size:1.25rem;font-weight:600;margin-bottom:.5rem}.info-card p{color:var(--color-text-dark-gray);line-height:1.5}.bulk-form-section{background-color:var(--color-box-white);padding:2.5rem;border-radius:24px;box-shadow:0 4px 20px #00000014}.bulk-form-section h2{font-size:1.75rem;font-weight:700;margin-bottom:1.5rem}.bulk-form{display:flex;flex-direction:column;gap:1.25rem}.form-group label{font-weight:500;font-size:.95rem}.form-group input,.form-group select,.form-group textarea{padding:.75rem;border:1px solid #ddd;border-radius:8px;font-family:inherit;font-size:1rem}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--color-text-black)}.submit-btn{background-color:var(--color-text-black);color:#fff;padding:1rem;border-radius:8px;font-size:1.1rem;font-weight:600;margin-top:1rem;transition:opacity .2s}.submit-btn:hover{opacity:.9}@media(max-width:900px){.bulk-container{grid-template-columns:1fr;gap:3rem}}.about-page{padding-bottom:4rem}.about-header{text-align:center;margin-bottom:4rem;padding:2rem 0}.about-header h1{font-size:3rem;font-weight:700;margin-bottom:1rem;color:var(--color-text-black)}.about-header p{font-size:1.25rem;color:var(--color-text-dark-gray)}.about-section{display:flex;align-items:center;gap:4rem;margin-bottom:4rem}.about-section.reverse{flex-direction:row-reverse}.about-text{flex:1}.about-text h2{font-size:2rem;font-weight:600;margin-bottom:1.5rem}.about-text p{font-size:1.1rem;line-height:1.7;color:var(--color-text-dark-gray);margin-bottom:1rem}.about-image-placeholder{flex:1;aspect-ratio:4/3;background-color:var(--color-box-white);border-radius:24px;display:flex;align-items:center;justify-content:center;font-size:4rem;box-shadow:0 4px 12px #0000000d}.values-section{text-align:center;margin-top:6rem}.values-section h2{font-size:2.5rem;font-weight:700;margin-bottom:3rem}.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.value-card{background-color:var(--color-box-white);padding:2rem;border-radius:16px;box-shadow:0 4px 12px #0000000d;display:flex;flex-direction:column;align-items:center;gap:1rem}.value-icon{font-size:2.5rem;background-color:#f0f4f8;width:80px;height:80px;border-radius:50%;display:flex;align-items:center;justify-content:center}.value-card h3{font-size:1.25rem;font-weight:600}.value-card p{color:var(--color-text-dark-gray)}@media(max-width:900px){.about-section,.about-section.reverse{flex-direction:column;gap:2rem}.values-grid{grid-template-columns:1fr}}.cart-page{padding:2rem;max-width:1200px;margin:0 auto;min-height:60vh}.cart-page h1{text-align:center;margin-bottom:3rem;color:var(--color-text-black)}.cart-page.empty{text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.5rem}.continue-shopping-btn{background-color:var(--color-text-black);color:#fff;padding:.75rem 1.5rem;border-radius:20px;text-decoration:none;font-weight:500}.cart-container{display:grid;grid-template-columns:2fr 1fr;gap:3rem}@media(max-width:900px){.cart-container{grid-template-columns:1fr}}.cart-items{display:flex;flex-direction:column;gap:1.5rem}.cart-item{display:grid;grid-template-columns:auto 2fr auto auto;align-items:center;gap:1.5rem;background:var(--color-box-white);padding:1.5rem;border-radius:12px;box-shadow:0 2px 8px #0000000d}@media(max-width:600px){.cart-item{grid-template-columns:1fr;text-align:center;justify-items:center}}.cart-item-image{width:80px;height:80px;border-radius:8px;overflow:hidden;background:#f0f4f8}.cart-item-image img{width:100%;height:100%;object-fit:cover}.cart-item-details h3{font-size:1.1rem;margin-bottom:.25rem}.item-price{color:var(--color-text-dark-gray)}.quantity-controls{display:flex;align-items:center;gap:.5rem;background:#f5f5f5;padding:.25rem;border-radius:20px}.quantity-controls button{width:24px;height:24px;border-radius:50%;border:none;background:#fff;cursor:pointer;font-weight:700}.quantity-controls span{min-width:20px;text-align:center;font-weight:500}.remove-btn{background:none;border:none;color:#ff5252;font-size:.8rem;cursor:pointer;text-decoration:underline;margin-top:.5rem}.cart-item-total{font-weight:600;font-size:1.1rem}.cart-summary{background:var(--color-box-white);padding:2rem;border-radius:12px;height:fit-content;box-shadow:0 4px 12px #0000000d}.cart-summary h2{font-size:1.5rem;margin-bottom:1.5rem;border-bottom:1px solid #eee;padding-bottom:1rem}.summary-row{display:flex;justify-content:space-between;margin-bottom:1rem;color:var(--color-text-dark-gray)}.summary-row.total{color:var(--color-text-black);font-weight:700;font-size:1.25rem;margin-top:1rem;border-top:1px solid #eee;padding-top:1rem}.checkout-btn{width:100%;background-color:var(--color-text-black);color:#fff;padding:1rem;border-radius:30px;font-size:1.1rem;font-weight:600;border:none;cursor:pointer;margin-top:1.5rem;transition:opacity .2s}.checkout-btn:hover{opacity:.9}.continue-link{display:block;text-align:center;margin-top:1rem;color:var(--color-text-dark-gray);text-decoration:none;font-size:.9rem}.fundraiser-page{padding-bottom:4rem}.fundraiser-header{background-color:var(--color-box-white);padding:3rem 2rem;border-radius:24px;text-align:center;margin-bottom:3rem;box-shadow:0 4px 12px #0000000d}.school-badge{font-size:3rem;margin-bottom:1rem}.fundraiser-header h1{font-size:2.5rem;font-weight:700;margin-bottom:.5rem;color:var(--color-text-black)}.fundraiser-header p{font-size:1.1rem;color:var(--color-text-dark-gray)}.goal-tracker{background-color:#fff;padding:2rem;border-radius:16px;max-width:800px;margin:0 auto 4rem;box-shadow:0 4px 12px #0000000d}.goal-info{display:flex;justify-content:space-between;margin-bottom:1rem;font-size:1.1rem}.progress-bar-container{width:100%;height:20px;background-color:#f0f4f8;border-radius:10px;overflow:hidden;margin-bottom:1rem}.progress-bar{height:100%;background-color:#4caf50;border-radius:10px;transition:width 1s ease-in-out}.goal-text{text-align:center;font-weight:600;color:var(--color-text-black)}.fundraiser-shop h2{text-align:center;font-size:2rem;margin-bottom:2rem}.success-page{display:flex;justify-content:center;align-items:center;min-height:60vh;text-align:center;padding:2rem}.success-content{background:#fff;padding:3rem;border-radius:15px;box-shadow:0 4px 15px #0000001a;max-width:500px;width:100%}.success-icon{font-size:4rem;margin-bottom:1rem}.success-content h1{color:#2c3e50;margin-bottom:.5rem}.order-id{color:#7f8c8d;font-size:.9rem;margin-bottom:2rem;font-family:monospace}.home-btn{display:inline-block;background-color:#3498db;color:#fff;padding:12px 24px;border-radius:25px;text-decoration:none;font-weight:700;transition:transform .2s,background-color .2s}.home-btn:hover{background-color:#2980b9;transform:translateY(-2px)}.admin-container{padding:2rem;max-width:1200px;margin:0 auto;min-height:80vh}.admin-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.admin-login-container{display:flex;justify-content:center;align-items:center;height:80vh}.admin-login-form{background:#fff;padding:2rem;border-radius:8px;box-shadow:0 4px 12px #0000001a;display:flex;flex-direction:column;gap:1rem;width:300px}.product-list table{width:100%;border-collapse:collapse;background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px #0000000d}.product-list th,.product-list td{padding:1rem;text-align:left;border-bottom:1px solid #eee}.product-list th{background:#f8f9fa;font-weight:600}.thumb{width:50px;height:50px;object-fit:cover;border-radius:4px}.add-btn,.save-btn{background:#2ecc71;color:#fff;border:none;padding:.8rem 1.5rem;border-radius:4px;cursor:pointer;font-weight:700}.delete-btn{background:#e74c3c;color:#fff;border:none;padding:.5rem 1rem;border-radius:4px;cursor:pointer;margin-left:.5rem}.editor-container{background:#fff;padding:2rem;border-radius:8px;box-shadow:0 4px 12px #0000001a;max-width:600px;margin:0 auto}.product-form{display:flex;flex-direction:column;gap:1rem}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{font-weight:600}.form-group input,.form-group select,.form-group textarea{padding:.8rem;border:1px solid #ddd;border-radius:4px}.checkbox-group label{display:flex;align-items:center;gap:.5rem;cursor:pointer}.form-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:1rem}
