/* ================================
FAST ZA DELIVERIES
MOBILE-FIRST WORDPRESS DESIGN
================================ */
.fzd-mobile-site,
.fzd-mobile-site * {
box-sizing: border-box;
}
.fzd-mobile-site {
width: 100%;
max-width: 100%;
margin: 0 !important;
padding: 0 !important;
overflow-x: hidden;
background:
radial-gradient(circle at 50% 0%, #174c29 0%, #071209 38%, #020402 100%);
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.5;
}
/* Prevent WordPress theme from changing headings */
.fzd-mobile-site h1,
.fzd-mobile-site h2,
.fzd-mobile-site h3,
.fzd-mobile-site p {
margin-top: 0;
}
/* TOP BAR */
.fzd-top {
width: 100%;
padding: 11px 12px;
text-align: center;
background: #020502;
border-bottom: 1px solid rgba(55,255,115,.18);
color: #dceee1;
font-size: 13px;
}
.fzd-top strong {
color: #39ff78;
}
/* NAV */
.fzd-nav {
width: 100%;
padding: 18px 15px;
display: flex;
justify-content: center;
align-items: center;
background: rgba(2,7,3,.96);
border-bottom: 1px solid rgba(55,255,115,.10);
}
.fzd-logo {
color: #39ff78;
font-size: 20px;
font-weight: 900;
text-align: center;
letter-spacing: 1px;
text-shadow: 0 0 15px rgba(57,255,120,.35);
}
/* HERO */
.fzd-hero {
width: 100%;
padding: 65px 20px 55px;
text-align: center;
}
.fzd-leaf {
font-size: 58px;
margin-bottom: 15px;
filter: drop-shadow(0 0 18px rgba(57,255,120,.45));
}
.fzd-hero h1 {
width: 100%;
color: #39ff78 !important;
font-size: clamp(42px, 13vw, 82px) !important;
line-height: .95 !important;
font-weight: 900 !important;
letter-spacing: 1px;
text-align: center;
text-shadow:
0 0 12px rgba(57,255,120,.7),
0 0 35px rgba(57,255,120,.25);
}
.fzd-subtitle {
max-width: 600px;
margin: 25px auto 20px !important;
color: #b7c7bc;
font-size: 16px;
line-height: 1.7;
}
.fzd-phone {
margin: 20px 0 25px !important;
color: #ffffff;
font-size: 19px;
font-weight: 800;
}
/* BUTTONS */
.fzd-buttons {
width: 100%;
display: flex;
flex-direction: column;
gap: 12px;
align-items: stretch;
}
.fzd-button {
display: flex !important;
width: 100%;
min-height: 54px;
align-items: center;
justify-content: center;
padding: 15px 20px;
border-radius: 50px;
text-decoration: none !important;
color: #ffffff !important;
font-size: 16px;
font-weight: 900;
-webkit-tap-highlight-color: transparent;
}
.fzd-whatsapp {
background: #20c968;
box-shadow: 0 7px 25px rgba(32,201,104,.25);
}
.fzd-telegram {
background: #229ed9;
box-shadow: 0 7px 25px rgba(34,158,217,.25);
}
/* SECTION */
.fzd-section {
width: 100%;
padding: 50px 18px;
}
.fzd-heading {
text-align: center;
margin-bottom: 28px;
}
.fzd-heading h2 {
color: #39ff78 !important;
font-size: 30px !important;
line-height: 1.15 !important;
font-weight: 900 !important;
}
.fzd-heading p {
color: #9eaea4;
font-size: 15px;
}
/* CARDS */
.fzd-grid {
width: 100%;
display: grid;
grid-template-columns: 1fr;
gap: 15px;
}
.fzd-card {
width: 100%;
padding: 28px 20px;
border-radius: 20px;
background:
linear-gradient(
145deg,
rgba(20,60,31,.85),
rgba(4,13,7,.96)
);
border: 1px solid rgba(57,255,120,.15);
text-align: center;
}
.fzd-icon {
font-size: 40px;
margin-bottom: 8px;
}
.fzd-card h3 {
color: #ffffff !important;
font-size: 20px !important;
font-weight: 800 !important;
}
.fzd-card p {
color: #9eaea4;
font-size: 14px;
margin-bottom: 0 !important;
}
/* CONTACT */
.fzd-contact {
width: calc(100% – 30px);
margin: 20px 15px 55px;
padding: 40px 20px;
text-align: center;
border-radius: 25px;
background:
radial-gradient(
circle at center,
rgba(57,255,120,.12),
rgba(3,10,5,.96)
);
border: 1px solid rgba(57,255,120,.18);
}
.fzd-contact h2 {
color: #39ff78 !important;
font-size: 30px !important;
font-weight: 900 !important;
}
.fzd-contact p {
color: #aab8ae;
margin: 15px 0 25px !important;
}
.fzd-contact strong {
color: #ffffff;
font-size: 18px;
}
/* FOOTER */
.fzd-footer {
width: 100%;
padding: 25px 15px;
text-align: center;
background: #020502;
border-top: 1px solid rgba(255,255,255,.06);
color: #6f7d74;
font-size: 12px;
}
/* TABLET */
@media (min-width: 600px) {
.fzd-buttons {
max-width: 520px;
margin-left: auto;
margin-right: auto;
flex-direction: row;
}
.fzd-button {
flex: 1;
}
.fzd-grid {
grid-template-columns: repeat(2, 1fr);
max-width: 900px;
margin: auto;
}
}
/* DESKTOP */
@media (min-width: 900px) {
.fzd-nav {
padding: 22px;
}
.fzd-hero {
padding: 100px 25px 90px;
}
.fzd-grid {
grid-template-columns: repeat(3, 1fr);
}
.fzd-section {
max-width: 1200px;
margin: auto;
}
}
/* IPHONE SAFE AREA */
@supports (padding: max(0px)) {
.fzd-top {
padding-left: max(12px, env(safe-area-inset-left));
padding-right: max(12px, env(safe-area-inset-right));
}
.fzd-footer {
padding-bottom: max(25px, env(safe-area-inset-bottom));
}
}
/* TOUCH DEVICES */
@media (hover: none) {
.fzd-button {
min-height: 56px;
}
.fzd-button:active {
transform: scale(.98);
}
}
FAST ZA
Text / WhatsApp / Telegram:
+1 (423) 812-1815
πΏ FAST ZA DELIVERIES
πΏ
FAST ZA
DELIVERIES
Welcome to FAST ZA DELIVERIES. Connect with us directly through WhatsApp or Telegram.
π± +1 (423) 812-1815
EXPLORE OUR COLLECTION
Featured categories
Flower
Featured selection.
Vapes
Featured vape category.
Edibles
Featured edible products.
Concentrates
Featured concentrates.
Accessories
Featured accessories.
New Arrivals
See what’s new.
WHY FAST ZA?
Simple. Direct. Convenient.
Fast Response
Contact us directly through your preferred messaging app.
Easy Contact
One number for text, WhatsApp and Telegram.
Direct Messaging
Tap a button and connect with us.
READY TO CONNECT?
Text / WhatsApp / Telegram
+1 (423) 812-1815
Leave a comment