Jagermeister Mini Fridge/Freezer | (A Grade)
Description
Cash-it-in-Goole eBay Template
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Red & Black Professional Color System */
--background: hsl(0, 0%, 100%);
--foreground: hsl(0, 0%, 10%);
--card: hsl(0, 0%, 100%);
--card-foreground: hsl(0, 0%, 10%);
--primary: hsl(0, 84%, 50%);
--primary-foreground: hsl(0, 0%, 100%);
--primary-glow: hsl(0, 84%, 60%);
--secondary: hsl(0, 0%, 96%);
--secondary-foreground: hsl(0, 0%, 10%);
--muted: hsl(0, 0%, 96%);
--muted-foreground: hsl(0, 0%, 45%);
--accent: hsl(0, 0%, 96%);
--accent-foreground: hsl(0, 0%, 10%);
--success: hsl(142, 76%, 36%);
--success-foreground: hsl(0, 0%, 100%);
--success-light: hsl(142, 70%, 45%);
--success-lighter: hsl(142, 60%, 55%);
--success-lightest: hsl(142, 50%, 65%);
--warning: hsl(38, 92%, 50%);
--warning-foreground: hsl(0, 0%, 100%);
--info: hsl(0, 84%, 50%);
--info-foreground: hsl(0, 0%, 100%);
--destructive: hsl(0, 84%, 60%);
--destructive-foreground: hsl(0, 0%, 100%);
--border: hsl(0, 0%, 90%);
--input: hsl(0, 0%, 90%);
--ring: hsl(0, 84%, 50%);
/* Professional gradients */
--gradient-primary: linear-gradient(135deg, hsl(0, 84%, 50%), hsl(0, 84%, 60%));
--gradient-hero: linear-gradient(135deg, hsl(0, 84%, 50%), hsl(0, 0%, 15%));
--gradient-surface: linear-gradient(135deg, hsl(0, 0%, 98%), hsl(0, 0%, 94%));
--gradient-card: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(0, 0%, 98%));
/* Shadows */
--shadow-soft: 0 4px 6px -1px hsla(0, 84%, 50%, 0.1), 0 2px 4px -1px hsla(0, 84%, 50%, 0.06);
--shadow-medium: 0 10px 15px -3px hsla(0, 84%, 50%, 0.1), 0 4px 6px -2px hsla(0, 84%, 50%, 0.05);
--shadow-large: 0 25px 50px -12px hsla(0, 84%, 50%, 0.25);
/* Animations */
--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--radius: 0.5rem;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: var(--foreground);
background: var(--gradient-surface);
min-height: 100vh;
}
.container {
max-width: 64rem;
margin: 0 auto;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
gap: 2rem;
}
.card {
background: var(--gradient-card);
border-radius: calc(var(--radius) * 2);
box-shadow: var(--shadow-medium);
border: none;
overflow: hidden;
}
.card-content {
padding: 2rem;
}
.header {
text-align: center;
background: var(--gradient-hero);
border-radius: calc(var(--radius) * 2);
padding: 2rem;
box-shadow: var(--shadow-large);
color: var(--primary-foreground);
}
.header h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.header p {
font-size: 1.125rem;
opacity: 0.9;
margin: 0;
}
.section-title {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
font-size: 1.5rem;
font-weight: 600;
color: var(--foreground);
margin-bottom: 1.5rem;
text-align: center;
}
.section-icon {
background: hsla(0, 84%, 50%, 0.1);
padding: 0.75rem;
border-radius: var(--radius);
display: flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
}
.icon {
width: 1.5rem;
height: 1.5rem;
stroke: var(--primary);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.social-section {
text-align: center;
}
.social-description {
color: var(--muted-foreground);
font-size: 1.125rem;
max-width: 48rem;
margin: 0 auto 2rem auto;
}
.social-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
}
.social-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.75rem 2rem;
background: var(--gradient-primary);
color: var(--primary-foreground);
text-decoration: none;
border-radius: var(--radius);
font-weight: 500;
font-size: 1rem;
box-shadow: var(--shadow-medium);
transition: var(--transition-smooth);
min-width: 12rem;
}
.social-button:hover {
box-shadow: var(--shadow-large);
transform: scale(1.05);
color: var(--primary-foreground);
text-decoration: none;
}
.item-description {
background: hsla(0, 0%, 96%, 0.5);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
text-align: center;
}
.item-description p {
color: var(--muted-foreground);
font-style: italic;
font-size: 1.125rem;
margin: 0;
}
.brand-new-notice {
background: hsla(0, 84%, 60%, 0.05);
border: 1px solid hsla(0, 84%, 60%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
margin-bottom: 2rem;
}
.brand-new-notice p {
margin: 0 0 1rem 0;
}
.brand-new-notice p:last-child {
margin: 0;
}
.brand-new-text {
color: var(--destructive);
font-weight: 700;
}
.grading-grid {
display: grid;
gap: 1rem;
}
.grade-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
border-radius: 0 var(--radius) var(--radius) 0;
}
.grade-a {
background: hsla(142, 76%, 36%, 0.1);
border-left: 4px solid var(--success);
}
.grade-b {
background: hsla(142, 70%, 45%, 0.1);
border-left: 4px solid var(--success-light);
}
.grade-c {
background: hsla(142, 60%, 55%, 0.1);
border-left: 4px solid var(--success-lighter);
}
.grade-s {
background: hsla(142, 50%, 65%, 0.1);
border-left: 4px solid var(--success-lightest);
}
.grade-icon {
color: var(--success);
margin-top: 0.125rem;
flex-shrink: 0;
}
.grade-b .grade-icon {
color: var(--success-light);
}
.grade-c .grade-icon {
color: var(--success-lighter);
}
.grade-s .grade-icon {
color: var(--success-lightest);
}
.grade-title {
font-weight: 700;
color: var(--success);
}
.grade-b .grade-title {
color: var(--success-light);
}
.grade-c .grade-title {
color: var(--success-lighter);
}
.grade-s .grade-title {
color: var(--success-lightest);
}
.grade-description {
color: var(--foreground);
margin-top: 0.25rem;
margin-bottom: 0;
}
.info-box {
background: hsla(0, 84%, 50%, 0.05);
border: 1px solid hsla(0, 84%, 50%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
margin-top: 2rem;
}
.info-box p {
margin: 0;
}
.notice-box {
background: hsla(38, 92%, 50%, 0.1);
border: 1px solid hsla(38, 92%, 50%, 0.3);
border-radius: var(--radius);
padding: 1rem;
margin: 1rem 0;
}
.highlight-box {
background: hsla(0, 84%, 50%, 0.05);
border: 1px solid hsla(0, 84%, 50%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
}
.highlight-green {
background: hsla(142, 76%, 36%, 0.05);
border: 1px solid hsla(142, 76%, 36%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
}
.highlight-yellow {
background: hsla(38, 92%, 50%, 0.05);
border: 1px solid hsla(38, 92%, 50%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
}
.company-info {
background: hsla(0, 84%, 50%, 0.05);
border: 1px solid hsla(0, 84%, 50%, 0.2);
border-radius: calc(var(--radius) + 0.25rem);
padding: 1.5rem;
margin-top: 1.5rem;
}
.content-text {
color: var(--foreground);
line-height: 1.75;
margin-bottom: 1rem;
}
.content-text:last-child {
margin-bottom: 0;
}
.footer {
text-align: center;
padding: 2rem 0;
}
.footer p {
color: var(--muted-foreground);
font-size: 0.875rem;
margin: 0;
}
/* Mobile Responsiveness */
@media (min-width: 640px) {
.social-buttons {
flex-direction: row;
justify-content: center;
}
.social-button {
width: auto;
}
}
@media (max-width: 768px) {
.container {
padding: 1rem;
gap: 1.5rem;
}
.card-content {
padding: 1.5rem;
}
.header {
padding: 1.5rem;
}
.header h1 {
font-size: 2.25rem;
}
.section-title {
font-size: 1.25rem;
}
}
Cash-it-in-Goole
Professional Retail Specialists in Electronics, Tools, Games and MUCH more!
Item Description
The Jagermeister Mini Fridge/Freezer is a stylish and compact appliance perfect for countertops. With a sleek black design and a single door, this table top fridge has a capacity of 1-5 cubic feet, making it ideal for small spaces like kitchens or dorm rooms. The mini fridge includes one shelf and one drawer for organization, and its black stainless steel finish adds a modern touch to any room. With its compact size and convenient features, the Jagermeister Mini Fridge/Freezer is a practical and stylish addition to any home.
Media Grading System
Unless this item has been listed as BRAND NEW, please refer to the below grading conditions
Brand New (N) - Brand New item, please note some items that are new may come in a box/packaging that isn't new or new looking, so please refer to our grading system.
A Grade (A) - Very Good
A Grade (A) - May or May not come boxed, please refer to listing photos. Item condition: Well maintained, still looks glossy and clear. Item(s) condition: Excellent, very little signs of usage.
B Grade (B) - Good
B Grade (B) - May come boxed or unboxed (refer to listing photos + title). Some scratches, scuffs and marks. No major damage or cracks to the Item(s). The Good Grade should be seen as slightly more signs of usage than A Grade.
C/Acceptable Grade (C)
Comes unboxed or with damaged casing. Item(s) condition: Useable, slightly more wear than above grading.
Parts / Semi Functional / S&R (S/S&R)
Items that are listed under "S" are either not working, partially working or only useful for their internal parts.
All our products are thoroughly cleaned and maintained. We strive to ensure all items are strenuously tested before listing.
Pre-Owned Goods
Majority of our items are pre-owned, and in overall good condition. For any surface marks/wear, we try our very best to provide as many images as possible showing the condition.
Some scratches/marks are difficult to pick up and as such we ask all buyers to please read our great no-quibble returns policy, detailed via the "Return" tab. Should you have any questions, you are more than welcome to contact us via the eBay message and one of our friendly team will get back to you.
Customer notice: The images for all our media products can differ from the product you receive. Also, any DLC may or may not have already been used.
With our products, we attempt to ensure the original adapters or charging cables are supplied. Images provided in the listing will show what you will receive with your purchase. However, on occasion, this is not possible and as such we will supply you with a generic USB/Data charging cable or UK power adapter ONLY.
Shipping
The majority of items available on our website are available for delivery. Some larger or more fragile items may only be available for store collection. This will be detailed in the item's description.
We aim to dispatch all orders by 3pm daily (Mon-Fri). Saturday, Sunday and Bank holiday orders will be dispatched on the very next available working day. We work with two main couriers (Royal Mail & DPD) and will dispatch your purchases using the most efficient service for the product.
The majority of orders will be sent via standard Royal Mail Tracked 48 delivery, which has a lead time of 3-5 working days. Please bear this in mind before contacting us concerning the "receipt of purchase". You can choose to upgrade the delivery service at checkout. Our current shipping rates can be seen when completing the checkout of your purchase.
You may see different delivery charges for different items across our eBay store, some items will be free postage, some will cost, and some will cost a little more than usual if the item is heavy or large meaning more expensive to send off.
Returns
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, please use eBay's managed returns process. As long as you are within the above dates and have the item as originally described you will automatically be accepted for a return.
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.
ONLY APPLICABLE FOR ROYAL MAIL: As stated by royal mail, if your package arrives but with no or missing items, royal mail should have included an apology letter to go with the defect package, when contacting us about this, please make sure you send us an image of the royal mail apology letter so we know it's legitimate.
If you receive your item and it's the completely wrong item AND OR missing parts then we will cover shipping costs for the return, please follow the eBay dispute process to do this and we will try to ensure things are resolved in a timely manner.
You can always contact us for any return question via eBay messaging.
Cash It In is an independent branch business that started in 2024 and has been continually growing ever since. We are not part of a vast organization or global franchise, we are a small business and proud to be. Our daily mission is to buy and sell top-quality pre-owned goods and we have been doing this for almost a decade as a franchise. Our staff is determined to give you the best experience in the 2nd hand retail trade. Rest assured you are in great hands when dealing with us!
Contact Us
We can be contacted at any time through eBay messages if you have any questions, comments, or product requests. We will respond to you within 24 hours and do our best to help you out! We encourage our customers to contact us with any questions or concerns! We'd like to be sure you are completely satisfied with your purchase.
© 2025 Cash It In. All Rights Reserved.
Details
Explore top 10s
Powered by FLUF Connect
This catalogue is managed with FLUF Connect.
Crosslisting software for resellers — list once, push to Depop, eBay, Vinted, Shopify and more, with auto-sync on every sale.
Learn more at fluf.io