Politique de remboursement
We have a 30-day return policy, which means you have 30 days after receiving your item to request a return.
To be eligible for a return, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.
To start a return, you can contact us at viriar.com@gmail.com. Please note that returns will need to be sent to the following address: [INSERT RETURN ADDRESS]
If your return is accepted, we’ll send you a return shipping label, as well as instructions on how and where to send your package. Items sent back to us without first requesting a return will not be accepted.
You can always contact us for any return question at viriar.com@gmail.com.
Damages and issues
Please inspect your order upon reception and contact us immediately if the item is defective, damaged or if you receive the wrong item, so that we can evaluate the issue and make it right.
Exceptions / non-returnable items
Certain types of items cannot be returned, like perishable goods (such as food, flowers, or plants), custom products (such as special orders or personalized items), and personal care goods (such as beauty products). We also do not accept returns for hazardous materials, flammable liquids, or gases. Please get in touch if you have questions or concerns about your specific item.
Unfortunately, we cannot accept returns on sale items or gift cards.
Exchanges
The fastest way to ensure you get what you want is to return the item you have, and once the return is accepted, make a separate purchase for the new item.
European Union 14 day cooling off period
Notwithstanding the above, if the merchandise is being shipped into the European Union, you have the right to cancel or return your order within 14 days, for any reason and without a justification. As above, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.
Refunds
We will notify you once we’ve received and inspected your return, and let you know if the refund was approved or not. If approved, you’ll be automatically refunded on your original payment method within 10 business days. Please remember it can take some time for your bank or credit card company to process and post the refund too.
If more than 15 business days have passed since we’ve approved your return, please contact us at viriar.com@gmail.com.
We have a 30-day return policy, which means you have 30 days after receiving your item to request a return.
To be eligible for a return, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.
To start a return, you can contact us at viriar.com@gmail.com. Please note that returns will need to be sent to the following address: [INSERT RETURN ADDRESS]
If your return is accepted, we’ll send you a return shipping label, as well as instructions on how and where to send your package. Items sent back to us without first requesting a return will not be accepted.
You can always contact us for any return question at viriar.com@gmail.com.
Damages and issues
Please inspect your order upon reception and contact us immediately if the item is defective, damaged or if you receive the wrong item, so that we can evaluate the issue and make it right.
Exceptions / non-returnable items
Certain types of items cannot be returned, like perishable goods (such as food, flowers, or plants), custom products (such as special orders or personalized items), and personal care goods (such as beauty products). We also do not accept returns for hazardous materials, flammable liquids, or gases. Please get in touch if you have questions or concerns about your specific item.
Unfortunately, we cannot accept returns on sale items or gift cards.
Exchanges
The fastest way to ensure you get what you want is to return the item you have, and once the return is accepted, make a separate purchase for the new item.
European Union 14 day cooling off period
Notwithstanding the above, if the merchandise is being shipped into the European Union, you have the right to cancel or return your order within 14 days, for any reason and without a justification. As above, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.
Refunds
We will notify you once we’ve received and inspected your return, and let you know if the refund was approved or not. If approved, you’ll be automatically refunded on your original payment method within 10 business days. Please remember it can take some time for your bank or credit card company to process and post the refund too.
If more than 15 business days have passed since we’ve approved your return, please contact us at viriar.com@gmail.com.
/* Reset default browser styles */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body Styling */ body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #2c3e50; /* Darker shade for main text */ background-color: #f0f2f5; overflow-x: hidden; } /* Container Class for Consistent Padding */ .container { width: 90%; max-width: 1200px; margin: auto; padding: 0 20px; } /* Header Styling */ header { background-color: #34495e; /* Darker background for contrast */ color: #ecf0f1; /* Light text for readability */ padding: 20px 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: top 0.3s ease-in-out; } header.hidden { top: -100px; /* Adjust based on header height */ } header .container { display: flex; justify-content: space-between; align-items: center; } /* Logo Styling */ header h1 { font-size: 1.8em; display: flex; align-items: center; } header h1 span { margin-left: 10px; font-size: 1.2em; } /* Plant SVG in Header */ .header-plant { width: 30px; height: 30px; margin-left: 10px; transition: transform 0.3s; } .header-plant:hover { transform: scale(1.1); } /* Navigation Styling */ nav ul { list-style: none; display: flex; gap: 25px; /* Increased gap for better spacing */ } nav ul li a { color: #ecf0f1; text-decoration: none; font-size: 1em; transition: color 0.3s; } nav ul li a:hover { color: #1abc9c; /* Vibrant teal for hover effect */ } /* Main Content Styling */ main { padding: 100px 0 50px; /* Top padding to avoid overlap with fixed header */ } .cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; } .card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); width: 100%; max-width: 350px; transition: transform 0.3s, box-shadow 0.3s; opacity: 0; transform: translateY(20px); animation: fadeInUp 1s forwards; } .card:hover { transform: translateY(-5px); box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); } /* Card Content Styling */ .card h2, .card h3 { color: #2c3e50; position: relative; padding-left: 35px; margin-bottom: 15px; animation: fadeInDown 0.5s ease-out forwards; opacity: 0; } .card h2::before, .card h3::before { content: '🔄'; /* Default emoji for h2 */ position: absolute; left: 0; top: 0; font-size: 24px; animation: bounce 2s infinite; } .card h3::before { content: '❗'; /* Different emoji for h3 */ } .card p, .card ul { color: #34495e; /* Darker text for better contrast */ opacity: 0; animation: fadeInUp 1s forwards; animation-delay: 0.5s; } .card ul { list-style-type: disc; margin-left: 40px; margin-bottom: 20px; } .card a { color: #1abc9c; /* Vibrant teal for links */ text-decoration: none; transition: color 0.3s; } .card a:hover { color: #16a085; /* Darker teal for hover */ } .card address { font-style: normal; background: #ecf0f1; padding: 15px; border-radius: 4px; margin-bottom: 20px; color: #2c3e50; /* Ensures address text is readable */ } /* Footer Styling */ footer { background-color: #34495e; /* Darker background for contrast */ color: #ecf0f1; /* Light text for readability */ padding: 20px 0; margin-top: 50px; animation: slideUp 0.5s ease-out; } footer .container { display: flex; justify-content: center; /* Center the navigation links */ align-items: center; flex-wrap: wrap; } /* Footer Navigation Styling */ footer nav ul { list-style: none; display: flex; gap: 25px; /* Spacing between footer links */ flex-wrap: wrap; justify-content: center; } footer nav ul li a { color: #ecf0f1; text-decoration: none; font-size: 1em; transition: color 0.3s; } footer nav ul li a:hover { color: #1abc9c; /* Vibrant teal for hover effect */ } /* Plant SVG in Footer */ .footer-plant { width: 30px; height: 30px; margin-left: 10px; transition: transform 0.3s; } .footer-plant:hover { transform: scale(1.1); } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } @keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } } @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } } @keyframes bounce { 0%, 20%, 40%, 60%, 80%, 100% { transform: translateY(0); } 10%, 30%, 50%, 70%, 90% { transform: translateY(-10px); } } @keyframes bounceIn { 0% { transform: scale(0.5); opacity: 0; } 60% { transform: scale(1.05); opacity: 1; } 100% { transform: scale(1); } } /* Responsive Design */ @media (max-width: 768px) { header .container, footer .container { flex-direction: column; align-items: center; } nav ul, footer nav ul { flex-direction: row; /* Keep links side by side */ gap: 15px; flex-wrap: wrap; justify-content: center; } main { padding: 100px 20px 50px; /* Adjust padding for smaller screens */ } .cards { justify-content: center; } .card { max-width: 100%; } }
Viriar🔧
🔄 Return Policy
We have a 30-day return policy, which means you have 30 days after receiving your item to request a return.
- Your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging.
- You’ll also need the receipt or proof of purchase.
To start a return, you can contact us at viriar.com@gmail.com 📧. Please note that returns will need to be sent to the following address:
🏠 Chladná 6, 930 11 Topoľníky, Slovak RepublicIf your return is accepted, we’ll send you a return shipping label 🚚, as well as instructions on how and where to send your package. Items sent back to us without first requesting a return will not be accepted.
You can always contact us for any return questions at viriar.com@gmail.com 📞.
❗ Damages and Issues
Please inspect your order upon reception and contact us immediately if the item is defective, damaged, or if you receive the wrong item, so that we can evaluate the issue and make it right.
❗ Exceptions / Non-returnable Items
Certain types of items cannot be returned, like perishable goods (such as food, flowers, or plants), custom products (such as special orders or personalized items), and personal care goods (such as beauty products). We also do not accept returns for hazardous materials, flammable liquids, or gases.
Please get in touch if you have questions or concerns about your specific item. Unfortunately, we cannot accept returns on sale items or gift cards.
❗ Exchanges
The fastest way to ensure you get what you want is to return the item you have, and once the return is accepted, make a separate purchase for the new item.
❗ European Union 14 Day Cooling Off Period
Notwithstanding the above, if the merchandise is being shipped into the European Union, you have the right to cancel or return your order within 14 days, for any reason and without a justification. As above, your item must be in the same condition that you received it, unworn or unused, with tags, and in its original packaging. You’ll also need the receipt or proof of purchase.
❗ Refunds
We will notify you once we’ve received and inspected your return, and let you know if the refund was approved or not. If approved, you’ll be automatically refunded on your original payment method within 10 business days 💳.
Please remember it can take some time for your bank or credit card company to process and post the refund too. If more than 15 business days have passed since we’ve approved your return, please contact us at viriar.com@gmail.com 📞.