body { font-family: ‘Market Sans’, Arial, sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, ‘Helvetica Neue’, Arial, sans-serif; background: #fafafc; color: #1d1d1f; line-height: 1.5; -webkit-font-smoothing: antialiased; } .container { max-width: 1100px; margin: 0 auto; padding: 0 28px; } /* ���� Klein Blue Palette ���� */ .blue { color: #002FA7; /* International Klein Blue */ } .blue-accent { color: #1A4FD6; /* brighter accent for hover / labels */ } .text-muted { color: #6e6e73; } h1 { font-size: 3.4rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; } h2 { font-size: 2.6rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.5rem; } h3 { font-size: 1.5rem; font-weight: 600; } h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; } @media (max-width: 700px) { h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } .container { padding: 0 18px; } } /* ���� Buttons ���� */ .btn-group { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 28px; } .btn { display: inline-block; padding: 14px 32px; border-radius: 40px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.25s ease; border: none; text-align: center; text-decoration: none; } .btn-primary { background: #002FA7; color: #fff; box-shadow: 0 4px 14px rgba(0, 47, 167, 0.3); } .btn-primary:hover { background: #1A4FD6; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 47, 167, 0.4); } .btn-outline { border: 1.5px solid #d2d2d7; color: #1d1d1f; background: transparent; } .btn-outline:hover { border-color: #002FA7; color: #002FA7; } /* ���� Sections ���� */ section { padding: 64px 0 56px; border-bottom: 1px solid #e5e5ea; } section:last-of-type { border-bottom: none; } .section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: #1A4FD6; /* bright accent */ font-weight: 600; margin-bottom: 8px; } .section-desc { font-size: 1.1rem; color: #6e6e73; max-width: 680px; } /* ���� Hero ���� */ .hero { padding: 40px 0 32px; /* no background, transparent */ } .hero-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; } .hero-brand .logo { font-size: 1.8rem; font-weight: 700; color: #1d1d1f; /* default color for “Chill Equipment” (black) */ } .hero-brand .logo span.blue { color: #002FA7; /* blue for “Pro” */ } .hero-brand .badge { background: #f0f0f2; color: #6e6e73; padding: 4px 16px; border-radius: 30px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; } .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } .hero-left .sub { font-size: 1.15rem; color: #6e6e73; max-width: 520px; margin: 8px 0 6px; } .hero-tags { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-top: 20px; } .hero-tags span { background: #f0f0f2; padding: 5px 16px; border-radius: 30px; font-size: 0.75rem; font-weight: 500; color: #1d1d1f; } .hero-tags .highlight { background: #002FA7; color: #fff; } /* Right card keep white background */ .hero-right { background: #ffffff; border-radius: 24px; padding: 28px 24px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); border: 1px solid #e5e5ea; } .model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } .model-card { background: #f8f8fa; border-radius: 16px; padding: 20px 16px; text-align: center; border: 1px solid #e5e5ea; transition: border-color 0.2s; } .model-card:hover { border-color: #002FA7; } .model-card .name { font-size: 1.3rem; font-weight: 600; } .model-card .cap { font-size: 0.9rem; color: #6e6e73; } .model-card .detail { font-size: 0.75rem; color: #8e8e93; } /* Trust Card – same style as model cards, premium feel */ .trust-card { margin-top: 18px; background: #f8f8fa; border-radius: 16px; padding: 18px 20px 14px; border: 1px solid #e5e5ea; transition: border-color 0.2s; text-align: left; } .trust-card:hover { border-color: #002FA7; } .trust-card .trust-item { font-size: 0.95rem; font-weight: 600; line-height: 1.8; color: #1d1d1f; padding: 2px 0; display: flex; align-items: baseline; gap: 8px; } .trust-card .trust-item .icon { flex-shrink: 0; width: 1.6rem; text-align: center; font-size: 1rem; } .trust-card .trust-item .highlight-blue { color: #002FA7; font-weight: 700; } .warranty-inline { margin-top: 16px; font-size: 0.75rem; color: #6e6e73; text-align: center; border-top: 1px solid #e5e5ea; padding-top: 14px; } .warranty-inline span { display: inline-block; margin: 0 8px; } @media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } } @media (max-width: 480px) { .model-grid { grid-template-columns: 1fr; } .btn-group .btn { width: 100%; } } /* ���� Features Grid ���� */ .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; } .feature-card { background: #ffffff; border-radius: 20px; padding: 28px 22px 24px; border: 1px solid #e5e5ea; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02); transition: border-color 0.2s; } .feature-card:hover { border-color: #002FA7; } .feature-card h4 { color: #002FA7; } .feature-card p { font-size: 0.92rem; color: #6e6e73; margin: 0; } /* ���� Spec Table ���� */ .spec-wrap { overflow-x: auto; margin-top: 28px; border-radius: 18px; border: 1px solid #e5e5ea; background: #ffffff; } .spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 540px; } .spec-table th, .spec-table td { padding: 14px 22px; text-align: left; border-bottom: 1px solid #e5e5ea; } .spec-table th { background: #f8f8fa; font-weight: 600; color: #002FA7; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; } .spec-table tr:last-child td { border-bottom: none; } .spec-table td:first-child { font-weight: 500; width: 30%; } .spec-table td { width: 35%; } /* ���� Why Grid ���� */ .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; margin-top: 32px; } .why-card { background: #ffffff; border-radius: 18px; padding: 26px 18px 22px; border: 1px solid #e5e5ea; text-align: center; } .why-card .num { font-size: 2.2rem; font-weight: 700; color: #1A4FD6; opacity: 0.5; margin-bottom: 4px; } .why-card h4 { color: #002FA7; } .why-card p { font-size: 0.85rem; color: #6e6e73; margin: 0; } /* ���� Warranty ���� */ .warranty-box { background: #ffffff; border-radius: 24px; padding: 40px 44px; border: 1px solid #e5e5ea; margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; } .warranty-box .left p { color: #6e6e73; font-size: 1rem; max-width: 480px; } .warranty-box .right { display: flex; flex-wrap: wrap; gap: 20px 36px; } .warranty-box .right .item { text-align: center; } .warranty-box .right .item .big { font-size: 2rem; font-weight: 700; color: #002FA7; line-height: 1; } .warranty-box .right .item .label { font-size: 0.8rem; color: #8e8e93; } @media (max-width: 600px) { .warranty-box { padding: 28px 20px; flex-direction: column; text-align: center; } .warranty-box .right { justify-content: center; } } /* ���� Cert Badges ���� */ .cert-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; margin-top: 28px; padding-top: 20px; border-top: 1px solid #e5e5ea; } .cert-row .badge { font-size: 0.75rem; font-weight: 500; color: #6e6e73; text-transform: uppercase; background: #f8f8fa; padding: 6px 18px; border-radius: 30px; border: 1px solid #e5e5ea; } .cert-row .badge.blue-badge { color: #002FA7; border-color: #002FA7; background: #f0f5ff; } /* ���� Footer ���� */ .footer { padding: 32px 0 24px; border-top: 1px solid #e5e5ea; font-size: 0.8rem; color: #8e8e93; text-align: center; background: #ffffff; } .footer .brand { color: #002FA7; font-weight: 500; } .anchor-offset { scroll-margin-top: 20px; } @media (max-width: 500px) { .features-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 380px) { .features-grid { grid-template-columns: 1fr; } }
Pro Chill Equipment
Commercial Series
Stainless Steel
Reach-in Freezer
Engineered for demanding commercial kitchens – energy-efficient, precise temperature control, and built to last.
40% Energy Saving CAREL Digital Cubigel Compressor R290 Refrigerant Auto Defrost Fan Cooling
Explore Features View Specs Warranty & Support
Available Models
ST27BF
23 Cu.ft.
1/4 HP – 225 lbs
ST54BF
49 Cu.ft.
1/2 HP – 362 lbs
🚚 PROFESSIONAL DELIVERY – Dedicated Truck Driver, Free Unloading
🔇 ULTRA QUIET – Premium Compressor, Barely Noticeable
🔒 5-YEAR COMPRESSOR + 2-YEAR FULL COVERAGE WARRANTY
✅ 30-DAY DAMAGE-FREE RETURN – We Cover Everything
🏆 ETL + NSF + DOE CERTIFIED – Commercial Grade
💬 24/7 REAL PERSON SUPPORT – We’re Here to Help
🇺🇸 FREE SHIPPING ANYWHERE IN THE US – Ships in 3 Days
5-Year Compressor Warranty US-Based Support
Core Technology
Engineered for Performance & Efficiency
Every component is selected to deliver consistent freezing, lower energy costs, and reliable operation in high-volume environments.
40% Energy Saving
CAREL digital thermostat and Cubigel compressor reduce consumption without compromising power.
Precise Temperature Control
Italian CAREL controller maintains 0.5 deg F fluctuation. Set range -10 to 10 deg F.
R290 Refrigerant
Eco-friendly, high-efficiency gas that cools faster and preserves food better.
Dynamic Fan Cooling
Ventilated system ensures even temperature distribution – frost-free operation.
Security Door Lock
Keep your inventory safe overnight with a robust lock and 2 included keys.
Heavy-Duty Shelves
3 epoxy-coated shelves, each holds 155 lbs. Corrosion-resistant and adjustable.
Self-Closing Door
Stays open beyond 90 deg, auto-closes below 90 deg. Heated frame prevents condensation.
Whisper-Quiet Operation
Advanced noise-reduction technology keeps your kitchen peaceful.
Technical Data
Specifications at a Glance
Choose the capacity that fits your operation. Both models share the same advanced cooling system and robust build quality.
| Specification |
ST27BF |
ST54BF |
| Capacity |
23 Cu.ft. |
49 Cu.ft. |
| Temperature Range |
-10 to 10 deg F |
-10 to 10 deg F |
| Refrigerant |
R290 (Eco-friendly) |
R290 (Eco-friendly) |
| Max Ambient Temp |
100 deg F |
100 deg F |
| Defrosting |
Automatic every 8 hours |
Automatic every 8 hours |
| Voltage / Phase / Hz |
115V / 1 / 60Hz |
115V / 1 / 60Hz |
| Horsepower |
1/4 HP |
1/2 HP |
| Interior Dims (W x D x H) inch |
23 1/9 x 26 7/9 x 60 3/7 |
50 1/5 x 26 7/9 x 60 3/7 |
| Net Weight |
225 lbs |
362 lbs |
| Plug Type |
NEMA 5-15P |
NEMA 5-15P |
| Electrical Cord |
120″ (10 ft) |
120″ (10 ft) |
– Exterior: SS430 Stainless Steel – Shelves: 3 x epoxy-coated (155 lbs each) – Casters: Heavy-duty with brake – Door: Heated frame, auto-closing
Why Pro Chill Equipment
Built for Commercial Excellence
From the materials we choose to the support we provide – every detail is designed to help your business thrive.
01
Superior Quality
SS430 exterior, epoxy-coated shelves, and premium components ensure durability.
02
Smart Controls
CAREL digital display, fan stop switch, and intelligent defrost for effortless management.
03
Fast & Secure Delivery
US-based warehouses ensure quick shipping and flawless condition on arrival.
04
Online Convenience
Hassle-free purchasing with dedicated support and a user-friendly experience.
05
Intertek & DOE Certified
Meets rigorous safety and efficiency standards – trusted by professionals.
06
24/7 US Support
Our team is ready to assist with technical questions and warranty service.
Peace of Mind
Warranty & Professional Support
We stand behind every freezer with comprehensive coverage and responsive service from our US-based team.
5-Year Compressor – 2-Year Full Coverage
Your investment is protected. Our warranty covers parts and labor, with 24/7 technical support available.
– US-based warehouses – Rapid response – Genuine parts
R290 Refrigerant Intertek Certified DOE Compliant Higher Efficiency Faster Cooling Better Preservation
Pro Chill Equipment – Commercial Refrigeration Solutions
© 2026 Pro Chill Equipment. All rights reserved. | Designed for professional kitchens
Model ST27BF – ST54BF 115V / 60Hz R290 NEMA 5-15P