Terms of service
/* ============================================ CSS CUSTOM PROPERTIES (DESIGN TOKENS) ============================================ */ :root { /* Colors - Light Mode */ --bg-primary: #ffffff; --bg-secondary: #f5f5f7; --bg-tertiary: #fafafa; --text-primary: #1d1d1f; --text-secondary: #6e6e73; --text-tertiary: #86868b; --accent: #0071e3; --accent-hover: #0077ed; --border: #d2d2d7; --border-light: #e8e8ed; --shadow-sm: 0 1px 3px rgba(0,0,0,0.04); --shadow-md: 0 4px 16px rgba(0,0,0,0.08); --shadow-lg: 0 12px 40px rgba(0,0,0,0.12); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 18px; --radius-xl: 24px; --max-width: 800px; --header-height: 64px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* ============================================ DARK MODE OVERRIDES ============================================ */ [data-theme="dark"] { --bg-primary: #000000; --bg-secondary: #1c1c1e; --bg-tertiary: #2c2c2e; --text-primary: #f5f5f7; --text-secondary: #a1a1a6; --text-tertiary: #8e8e93; --accent: #0a84ff; --accent-hover: #409cff; --border: #38383a; --border-light: #2c2c2e; --shadow-sm: 0 1px 3px rgba(0,0,0,0.3); --shadow-md: 0 4px 16px rgba(0,0,0,0.4); --shadow-lg: 0 12px 40px rgba(0,0,0,0.5); } /* ============================================ CSS RESET & BASE STYLES ============================================ */ *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 17px; line-height: 1.6; color: var(--text-primary); background-color: var(--bg-primary); transition: var(--transition); } /* ============================================ SKIP LINK (ACCESSIBILITY) ============================================ */ .skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #fff; padding: 8px 16px; z-index: 10000; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600; text-decoration: none; transition: top 0.2s; } .skip-link:focus { top: 0; } /* ============================================ STICKY HEADER / NAVIGATION ============================================ */ .site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); background: rgba(255, 255, 255, 0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--border-light); transition: var(--transition); } [data-theme="dark"] .site-header { background: rgba(0, 0, 0, 0.72); } .header-inner { max-width: var(--max-width); margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; } .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-primary); } .brand-logo { width: 36px; height: 36px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0; } .brand-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; } .header-actions { display: flex; align-items: center; gap: 12px; } /* ============================================ THEME TOGGLE BUTTON ============================================ */ .theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--bg-secondary); color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); } .theme-toggle:hover { background: var(--bg-tertiary); transform: scale(1.05); } .theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } .theme-toggle svg { width: 20px; height: 20px; } /* ============================================ MAIN CONTENT AREA ============================================ */ .main-content { max-width: var(--max-width); margin: 0 auto; padding: 48px 24px 80px; } /* ============================================ PAGE HEADER ============================================ */ .page-header { text-align: center; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border-light); } .page-header h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; } .last-updated { color: var(--text-secondary); font-size: 15px; } /* ============================================ TABLE OF CONTENTS ============================================ */ .toc { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 48px; box-shadow: var(--shadow-sm); } .toc h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; } .toc-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px 24px; } .toc-list li a { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); text-decoration: none; font-size: 15px; padding: 6px 0; transition: var(--transition); border-radius: var(--radius-sm); } .toc-list li a:hover, .toc-list li a:focus-visible { color: var(--accent); outline: none; } .toc-list li a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } .toc-number { font-size: 12px; font-weight: 700; color: var(--accent); min-width: 24px; } /* ============================================ SECTIONS ============================================ */ .section { margin-bottom: 40px; scroll-margin-top: calc(var(--header-height) + 24px); } .section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); } .section-icon { width: 40px; height: 40px; background: var(--bg-secondary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; } .section-icon svg { width: 22px; height: 22px; } .section h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; } .section p { margin-bottom: 14px; color: var(--text-secondary); } .section ul { margin-left: 24px; margin-bottom: 14px; color: var(--text-secondary); } .section ul li { margin-bottom: 8px; padding-left: 4px; } .section strong { color: var(--text-primary); font-weight: 600; } /* ============================================ FAQ SECTION ============================================ */ .faq-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border-light); } .faq-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; text-align: center; } .faq-item { background: var(--bg-secondary); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); } .faq-item:hover { box-shadow: var(--shadow-md); } .faq-question { width: 100%; padding: 20px 24px; background: none; border: none; text-align: left; font-size: 17px; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: var(--transition); } .faq-question:hover { background: var(--bg-tertiary); } .faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; } .faq-icon { width: 24px; height: 24px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; } .faq-item[open] .faq-icon { transform: rotate(180deg); } .faq-answer { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.7; animation: fadeIn 0.3s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } } /* ============================================ FOOTER ============================================ */ .site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border-light); padding: 40px 24px; text-align: center; transition: var(--transition); } .footer-inner { max-width: var(--max-width); margin: 0 auto; } .footer-brand { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); } .footer-copyright { color: var(--text-tertiary); font-size: 14px; margin-bottom: 16px; } .footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; } .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: var(--transition); } .footer-links a:hover { color: var(--accent); } /* ============================================ BACK TO TOP BUTTON ============================================ */ .back-to-top { position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 999; } .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); } .back-to-top:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); } .back-to-top:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } .back-to-top svg { width: 20px; height: 20px; } /* ============================================ RESPONSIVE DESIGN ============================================ */ @media (max-width: 640px) { :root { --header-height: 56px; } .page-header h1 { font-size: 32px; } .main-content { padding: 32px 16px 64px; } .toc { padding: 20px; } .toc-list { grid-template-columns: 1fr; } .section h2 { font-size: 21px; } .faq-question { padding: 16px 20px; font-size: 16px; } .faq-answer { padding: 0 20px 16px; } .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; } } /* ============================================ REDUCED MOTION PREFERENCE ============================================ */ @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } } /* ============================================ PRINT STYLES ============================================ */ @media print { .site-header, .back-to-top, .theme-toggle, .faq-question .faq-icon { display: none !important; } body { background: #fff; color: #000; } .section { break-inside: avoid; page-break-inside: avoid; } a { text-decoration: underline; color: #000; } }
Terms & Conditions
Last Updated: August 4, 2026
Table of Contents
- 1. Introduction
- 2. Acceptance of Terms
- 3. Eligibility
- 4. Products & Availability
- 5. Pricing & Payments
- 6. Order Processing
- 7. Shipping & Delivery
- 8. Returns & Refunds
- 9. Warranty Disclaimer
- 10. User Accounts
- 11. Prohibited Activities
- 12. Intellectual Property
- 13. Product Descriptions
- 14. Third-Party Services
- 15. Limitation of Liability
- 16. Indemnification
- 17. Privacy
- 18. Cookies
- 19. Governing Law
- 20. Changes to Terms
- 21. Contact Information
1. Introduction
Welcome to DawineStore ("we," "our," or "us"). These Terms & Conditions govern your access to and use of our website, mobile applications, and services (collectively, the "Services"). DawineStore is an online eCommerce platform offering a wide variety of products including Fashion & Clothing, Shoes & Sneakers, Gaming PCs, Computer Components, Gaming Accessories, Electronics, Home & Office Products, Furniture, and Lifestyle Products.
By accessing or using our Services, you agree to be bound by these Terms. If you do not agree to all the terms and conditions of this agreement, you may not access the Services.
2. Acceptance of Terms
By accessing, browsing, or using the DawineStore website and Services, you acknowledge that you have read, understood, and agree to be bound by these Terms & Conditions, our Privacy Policy, and any additional terms and conditions that may apply to specific sections of the Services.
We reserve the right to update, change, or replace any part of these Terms at our sole discretion. It is your responsibility to check this page periodically for changes. Your continued use of the Services following the posting of any changes constitutes acceptance of those changes.
3. Eligibility
To use our Services and make purchases, you must:
- Be at least 18 years of age or the age of majority in your jurisdiction.
- Have the legal capacity to enter into binding contracts.
- Provide accurate, complete, and current information when creating an account.
- Not be barred from using the Services under applicable laws.
If you are under 18, you may use our Services only with the involvement and consent of a parent or guardian.
4. Products and Availability
DawineStore offers a diverse catalog of products across multiple categories including Fashion & Clothing, Shoes & Sneakers, Gaming PCs, Computer Components, Gaming Accessories, Electronics, Home & Office Products, Furniture, and Lifestyle Products.
All products are subject to availability. We reserve the right to discontinue any product at any time without notice. Prices for products are subject to change without notice. We shall not be liable to you or any third party for any modification, price change, suspension, or discontinuance of any product.
Certain products may have quantity limits per customer. We reserve the right to limit the quantities of any products or services that we offer.
5. Pricing and Payments
All prices listed on DawineStore are in USD unless otherwise specified. Prices do not include applicable taxes, shipping fees, or duties, which will be calculated and displayed at checkout.
We accept the following payment methods: major credit cards (Visa, MasterCard, American Express), PayPal, Apple Pay, Google Pay, and DawineStore Gift Cards.
By providing payment information, you represent and warrant that you are authorized to use the designated payment method. In the event of a payment failure, we reserve the right to cancel your order.
6. Order Processing
After you place an order, you will receive an order confirmation email. This email confirms that we have received your order but does not constitute acceptance of your order.
We reserve the right to refuse or cancel any order for any reason including limitations on quantities available for purchase, inaccuracies in product or pricing information, or problems identified by our fraud prevention department.
If we cancel your order after payment has been processed, we will issue a full refund to your original payment method within 5-10 business days.
7. Shipping and Delivery
DawineStore ships to addresses within the United States and select international destinations. Shipping costs and estimated delivery times are calculated at checkout based on your location, selected shipping method, and order weight.
Delivery times are estimates and commence from the date of shipping, not the date of order. We are not responsible for delays caused by carriers, customs, or unforeseen circumstances.
Risk of loss and title for items purchased pass to you upon delivery of the items to the carrier. You are responsible for filing any claims with carriers for damaged or lost shipments.
8. Returns and Refund Policy
We want you to be completely satisfied with your purchase. DawineStore accepts returns within 30 days of delivery for most items in their original, unused condition with all tags and packaging intact.
The following items are non-returnable: intimate apparel, swimwear, perishable goods, custom-made or personalized items, software and digital downloads, and gift cards.
Refunds will be issued to the original payment method within 5-10 business days after we receive and inspect your returned item. Original shipping costs are non-refundable unless the return is due to our error.
9. Warranty Disclaimer
Except as expressly provided herein, DawineStore makes no representations or warranties of any kind, express or implied, regarding the Services or any products purchased through the Services. All products are provided "as is" and "as available."
Some products may carry manufacturer warranties. In such cases, warranty claims should be directed to the manufacturer according to their specific warranty terms and conditions.
To the fullest extent permitted by law, DawineStore disclaims all warranties, including but not limited to implied warranties of merchantability, fitness for a particular purpose, and non-infringement.
10. User Accounts
To access certain features of our Services, you may be required to register for an account. You agree to provide accurate, current, and complete information during registration and to update such information to keep it accurate and complete.
You are responsible for maintaining the confidentiality of your account credentials and for all activities that occur under your account. You agree to notify us immediately of any unauthorized use of your account.
We reserve the right to suspend or terminate your account if any information provided proves to be inaccurate, fraudulent, or in violation of these Terms.
11. Prohibited Activities
You agree not to engage in any of the following prohibited activities:
- Using the Services for any illegal purpose or in violation of any laws.
- Attempting to interfere with the proper functioning of the Services.
- Using automated systems or software to extract data from the Services.
- Impersonating any person or entity or misrepresenting your affiliation.
- Uploading or transmitting viruses, malware, or other harmful code.
- Engaging in fraudulent transactions or payment disputes without cause.
- Reselling products purchased from DawineStore without authorization.
12. Intellectual Property
All content on DawineStore, including but not limited to text, graphics, logos, images, product descriptions, software, and code, is the property of DawineStore or its content suppliers and is protected by international copyright, trademark, and other intellectual property laws.
You may not reproduce, distribute, modify, create derivative works of, publicly display, or exploit any content from our Services without our prior written consent.
The DawineStore name, logo, and all related names, logos, product and service names, designs, and slogans are trademarks of DawineStore or its affiliates.
13. Product Descriptions
DawineStore attempts to be as accurate as possible with product descriptions, images, and specifications. However, we do not warrant that product descriptions or other content on the Services are accurate, complete, reliable, current, or error-free.
Colors displayed on our website may vary depending on your monitor and display settings. We cannot guarantee that your monitor's display of any color will be accurate.
If a product offered by DawineStore is not as described, your sole remedy is to return it in unused condition for a refund in accordance with our Returns and Refund Policy.
14. Third-Party Services
Our Services may contain links to third-party websites or services that are not owned or controlled by DawineStore. We have no control over, and assume no responsibility for, the content, privacy policies, or practices of any third-party websites or services.
Your interactions with third-party providers found on or through our Services are solely between you and such third parties. You agree that DawineStore shall not be responsible or liable for any loss or damage arising from such dealings.
15. Limitation of Liability
To the fullest extent permitted by applicable law, DawineStore and its directors, employees, partners, agents, suppliers, or affiliates shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including without limitation, loss of profits, data, use, goodwill, or other intangible losses.
Our total liability to you for all claims arising from or relating to these Terms or your use of the Services shall not exceed the amount you paid to DawineStore in the twelve (12) months prior to the event giving rise to liability.
16. Indemnification
You agree to defend, indemnify, and hold harmless DawineStore and its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys' fees) arising out of or relating to your violation of these Terms or your use of the Services.
17. Privacy
Your privacy is important to us. Our Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website or make a purchase. By using our Services, you consent to the collection and use of information in accordance with our Privacy Policy.
We implement appropriate technical and organizational measures to protect your personal data against unauthorized access, alteration, disclosure, or destruction.
18. Cookies
DawineStore uses cookies and similar tracking technologies to enhance your browsing experience, analyze site traffic, personalize content, and serve targeted advertisements. By using our Services, you consent to our use of cookies in accordance with our Cookie Policy.
You can manage your cookie preferences through your browser settings. Please note that disabling certain cookies may affect the functionality and user experience of our Services.
19. Governing Law
These Terms shall be governed by and construed in accordance with the laws of the State of Delaware, United States, without regard to its conflict of law provisions. Any dispute arising under these Terms shall be subject to the exclusive jurisdiction of the courts located in Delaware.
If any provision of these Terms is held to be invalid or unenforceable, such provision shall be struck and the remaining provisions shall be enforced to the fullest extent permitted by law.
20. Changes to These Terms
We reserve the right to modify or replace these Terms at any time at our sole discretion. If a revision is material, we will provide at least 30 days' notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.
By continuing to access or use our Services after any revisions become effective, you agree to be bound by the revised Terms. If you do not agree to the new terms, you are no longer authorized to use the Services.
21. Contact Information
If you have any questions about these Terms & Conditions, please contact us:
- Email: support@dawinestore.com
- Phone: +1 (800) 555-DAWINE
- Address: DawineStore Inc., 123 Commerce Street, Suite 400, Wilmington, DE 19801, USA
- Business Hours: Monday – Friday, 9:00 AM – 6:00 PM EST
Frequently Asked Questions
How do I track my order?