@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&family=Rubik:wght@400;500;600;700;800&display=swap');
/* ── Hide Shopify default page title ── */
.page-header h1,
.template-page .page-title,
.section-template--page h1.page-title,
h1.page-title,
.page-header__title,
.main-page-title,
.article-template h1,
.page-template h1:first-of-type:not(.shugis-shipping-hero h1) {
display: none !important;
}
.shugis-shipping-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.shugis-shipping-page {
--blue: #0cbbf4;
--blue-light: #e8f8fe;
--blue-dark: #0a9fd0;
--pink: #ff5fa0;
--pink-light: #fff0f5;
--pink-dark: #e8548e;
--green: #10b981;
--green-light: #ecfdf5;
--dark: #1a1a2e;
--gray: #6b7280;
--gray-light: #f3f4f6;
--white: #ffffff;
--radius: 16px;
--radius-sm: 10px;
--shadow: 0 4px 24px rgba(12, 187, 244, 0.10);
--shadow-hover: 0 8px 32px rgba(12, 187, 244, 0.18);
font-family: 'Heebo', 'Rubik', sans-serif;
direction: rtl;
text-align: right;
color: var(--dark);
max-width: 960px;
margin: 0 auto;
padding: 20px 20px 60px;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}
/* ── Hero Section ── */
.shugis-shipping-hero {
text-align: center;
padding: 50px 20px 40px;
position: relative;
overflow: hidden;
}
.shugis-shipping-hero::before {
content: '';
position: absolute;
top: -60px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(12,187,244,0.08) 0%, transparent 70%);
z-index: 0;
pointer-events: none;
}
.shugis-hero-emoji {
font-size: 52px;
display: block;
margin-bottom: 12px;
position: relative;
z-index: 1;
animation: shugis-bounce 2s ease-in-out infinite;
}
@keyframes shugis-bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
.shugis-shipping-hero h1 {
font-family: 'Rubik', sans-serif;
font-size: clamp(32px, 5vw, 46px);
font-weight: 800;
color: var(--dark);
margin-bottom: 10px;
position: relative;
z-index: 1;
}
.shugis-shipping-hero h1 span {
background: linear-gradient(135deg, var(--blue), var(--pink));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.shugis-hero-subtitle {
font-size: 17px;
color: var(--gray);
font-weight: 400;
position: relative;
z-index: 1;
max-width: 500px;
margin: 0 auto;
}
/* ── Free Shipping Banner ── */
.shugis-free-banner {
background: linear-gradient(135deg, var(--blue), #38d0ff);
color: var(--white);
text-align: center;
padding: 16px 24px;
border-radius: var(--radius);
font-size: 17px;
font-weight: 700;
margin: 0 0 40px;
position: relative;
overflow: hidden;
box-shadow: 0 4px 20px rgba(12,187,244,0.25);
white-space: nowrap;
}
.shugis-free-banner::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: repeating-linear-gradient(
-45deg,
transparent,
transparent 10px,
rgba(255,255,255,0.05) 10px,
rgba(255,255,255,0.05) 20px
);
pointer-events: none;
}
.shugis-free-banner span {
position: relative;
z-index: 1;
}
@media (max-width: 480px) {
.shugis-free-banner {
font-size: 15px;
padding: 14px 16px;
}
}
@media (max-width: 360px) {
.shugis-free-banner {
font-size: 13.5px;
padding: 13px 12px;
}
}
/* ── Shipping Cards ── */
.shugis-cards-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-bottom: 40px;
}
@media (max-width: 640px) {
.shugis-cards-grid {
grid-template-columns: 1fr;
}
}
.shugis-card {
background: var(--white);
border: 2px solid var(--gray-light);
border-radius: var(--radius);
padding: 24px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.shugis-card:hover {
border-color: var(--blue);
box-shadow: var(--shadow-hover);
transform: translateY(-3px);
}
.shugis-card.shugis-card--popular {
border-color: var(--pink);
background: linear-gradient(180deg, var(--pink-light) 0%, var(--white) 40%);
}
.shugis-card.shugis-card--popular:hover {
border-color: var(--pink-dark);
box-shadow: 0 8px 32px rgba(255, 95, 160, 0.18);
}
.shugis-card-badge {
position: absolute;
top: 14px;
left: 14px;
background: var(--pink);
color: white;
font-size: 11px;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
letter-spacing: 0.3px;
}
.shugis-card-icon {
font-size: 36px;
margin-bottom: 12px;
display: block;
}
.shugis-card-title {
font-family: 'Rubik', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--dark);
margin-bottom: 4px;
}
.shugis-card-provider {
font-size: 13px;
color: var(--gray);
margin-bottom: 16px;
font-weight: 400;
}
.shugis-card-details {
display: flex;
flex-direction: column;
gap: 10px;
}
.shugis-card-detail {
display: flex;
align-items: center;
gap: 10px;
font-size: 14px;
color: var(--dark);
}
.shugis-card-detail-icon {
width: 32px;
height: 32px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
flex-shrink: 0;
background: var(--blue-light);
}
.shugis-card.shugis-card--popular .shugis-card-detail-icon {
background: var(--pink-light);
}
.shugis-card-detail-label {
font-weight: 400;
color: var(--gray);
font-size: 12px;
display: block;
}
.shugis-card-detail-value {
font-weight: 600;
font-size: 14px;
}
.shugis-card-price {
margin-top: 16px;
padding-top: 16px;
border-top: 1px dashed #e5e7eb;
display: flex;
align-items: center;
justify-content: space-between;
}
.shugis-card-price-amount {
font-family: 'Rubik', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--blue);
white-space: nowrap;
}
.shugis-card.shugis-card--popular .shugis-card-price-amount {
color: var(--pink);
}
.shugis-card-price-note {
font-size: 12px;
color: var(--gray);
max-width: 160px;
}
.shugis-card-price-free {
font-family: 'Rubik', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--green);
white-space: nowrap;
}
/* ── Info Sections ── */
.shugis-info-section {
margin-bottom: 32px;
}
.shugis-info-title {
font-family: 'Rubik', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--dark);
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.shugis-info-title-emoji {
font-size: 24px;
}
/* ── Accordion / Expandables ── */
.shugis-expandable {
border: 2px solid var(--gray-light);
border-radius: var(--radius-sm);
margin-bottom: 10px;
overflow: hidden;
transition: border-color 0.3s;
}
.shugis-expandable:hover {
border-color: var(--blue);
}
.shugis-expandable-header {
padding: 16px 20px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
background: var(--white);
transition: background 0.3s;
user-select: none;
-webkit-user-select: none;
}
.shugis-expandable-header:hover {
background: var(--blue-light);
}
.shugis-expandable-header-right {
display: flex;
align-items: center;
gap: 12px;
}
.shugis-expandable-emoji {
font-size: 22px;
}
.shugis-expandable-title {
font-weight: 600;
font-size: 16px;
color: var(--dark);
}
.shugis-expandable-arrow {
width: 28px;
height: 28px;
border-radius: 50%;
background: var(--gray-light);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
font-size: 12px;
color: var(--gray);
flex-shrink: 0;
}
.shugis-expandable.active .shugis-expandable-arrow {
background: var(--blue);
color: white;
transform: rotate(180deg);
}
.shugis-expandable-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.shugis-expandable.active .shugis-expandable-content {
max-height: 600px;
}
.shugis-expandable-inner {
padding: 0 20px 20px;
font-size: 14.5px;
line-height: 1.8;
color: #444;
}
.shugis-expandable-inner strong {
color: var(--dark);
}
/* ── Store Cards ── */
.shugis-stores-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 14px;
}
@media (max-width: 640px) {
.shugis-stores-grid {
grid-template-columns: 1fr;
}
}
.shugis-store-card {
background: var(--white);
border: 2px solid var(--gray-light);
border-radius: var(--radius-sm);
padding: 20px;
transition: all 0.3s;
position: relative;
overflow: hidden;
}
.shugis-store-card:hover {
border-color: var(--blue);
box-shadow: var(--shadow);
}
.shugis-store-card--online {
border-color: var(--blue);
background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 50%);
}
.shugis-store-badge {
display: inline-block;
font-size: 11px;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
margin-bottom: 10px;
letter-spacing: 0.3px;
}
.shugis-store-badge--online {
background: var(--blue);
color: white;
}
.shugis-store-badge--physical {
background: var(--pink-light);
color: var(--pink);
}
.shugis-store-name {
font-family: 'Rubik', sans-serif;
font-weight: 700;
font-size: 16px;
color: var(--dark);
margin-bottom: 4px;
}
.shugis-store-address {
font-size: 13px;
color: var(--gray);
margin-bottom: 10px;
}
.shugis-store-location {
font-size: 13px;
color: var(--pink);
font-weight: 600;
margin-bottom: 10px;
}
.shugis-store-prep {
font-size: 13px;
font-weight: 600;
color: var(--green);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 4px;
}
.shugis-store-hours {
font-size: 13px;
color: #555;
line-height: 1.7;
}
.shugis-store-hours span {
display: block;
}
/* ── Note Box ── */
.shugis-note {
background: linear-gradient(135deg, #fffbeb, #fef3c7);
border: 1px solid #fbbf24;
border-radius: var(--radius-sm);
padding: 16px 20px;
font-size: 14px;
color: #92400e;
display: flex;
gap: 10px;
align-items: flex-start;
}
.shugis-note-emoji {
font-size: 20px;
flex-shrink: 0;
line-height: 1.4;
}
.shugis-note--info {
background: linear-gradient(135deg, var(--blue-light), #ddf5fe);
border-color: var(--blue);
color: var(--blue-dark);
}
/* ── Footer CTA ── */
.shugis-shipping-cta {
text-align: center;
margin-top: 48px;
padding: 40px 24px;
background: linear-gradient(135deg, var(--blue-light), var(--pink-light));
border-radius: var(--radius);
position: relative;
overflow: hidden;
}
.shugis-shipping-cta::before {
content: '';
position: absolute;
top: -50%;
right: -30%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(255,95,160,0.1), transparent 70%);
pointer-events: none;
}
.shugis-cta-emoji {
font-size: 40px;
margin-bottom: 12px;
display: block;
}
.shugis-cta-title {
font-family: 'Rubik', sans-serif;
font-size: 22px;
font-weight: 700;
color: var(--dark);
margin-bottom: 8px;
}
.shugis-cta-text {
font-size: 15px;
color: var(--gray);
margin-bottom: 20px;
}
.shugis-cta-button {
display: inline-block;
padding: 14px 40px;
background: linear-gradient(135deg, var(--pink), var(--pink-dark));
color: white !important;
font-family: 'Rubik', sans-serif;
font-size: 16px;
font-weight: 700;
border-radius: 50px;
text-decoration: none !important;
transition: all 0.3s;
box-shadow: 0 4px 16px rgba(255,95,160,0.3);
}
.shugis-cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 24px rgba(255,95,160,0.4);
color: white !important;
text-decoration: none !important;
}
/* ── Responsive ── */
@media (max-width: 640px) {
.shugis-shipping-page {
padding: 10px 14px 40px;
}
.shugis-shipping-hero {
padding: 30px 10px 28px;
}
.shugis-hero-emoji {
font-size: 40px;
}
.shugis-card {
padding: 20px;
}
.shugis-card-price {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.shugis-card-price-note {
max-width: 100%;
}
.shugis-shipping-cta {
padding: 30px 20px;
}
}
/* ── Fade-in animation ── */
.shugis-fade-up {
opacity: 0;
transform: translateY(20px);
animation: shugisFadeUp 0.5s ease forwards;
}
.shugis-fade-up:nth-child(1) { animation-delay: 0.05s; }
.shugis-fade-up:nth-child(2) { animation-delay: 0.1s; }
.shugis-fade-up:nth-child(3) { animation-delay: 0.15s; }
.shugis-fade-up:nth-child(4) { animation-delay: 0.2s; }
@keyframes shugisFadeUp {
to { opacity: 1; transform: translateY(0); }
}
📦
איך מקבלים את השוגיס?
בחרו את שיטת המשלוח שהכי נוחה לכם — ואנחנו נדאג לשאר 🤙
🎉 משלוח חינם עד הבית בקנייה מעל 249₪!
⭐ הכי פופולרי
🚀
אקספרס VIP עד הבית
חברת זיג-זג
⏱️
זמן אספקה
2-4 ימי עסקים
29₪
או חינם מעל 249₪ 🎁
⚡
משלוח מהיר 1-2 ימים
Get Package · גוש דן בלבד
⏱️
זמן אספקה
1-2 ימי עסקים
55₪
הזמנות אחרי 12:00 — יום העסקים הבא
📬
נקודת איסוף / לוקר
UPS
⏱️
זמן אספקה
4-7 ימי עסקים
📍
לאן מגיע?
לוקר או קיוסק קרוב אליך
19₪
האופציה הכי חסכונית 💰
🏬
איסוף עצמי
קניון עזריאלי תל אביב
📍
איפה?
הדוכן שלנו בעזריאלי ת"א
חינם! 🙌
💡
טוב לדעת
🚀
איך עובד משלוח אקספרס VIP?
▼
השליח ייצור איתך קשר טלפוני לתיאום ההגעה — לכן חשוב להיות זמינים אחרי ההזמנה.
שעות משלוח: 9:00 – 18:00
💡
טיפ: כדאי לבחור כתובת שבה תהיו בשעות האלה — למשל, מקום העבודה.
⚠️
אזורים חריגים: אילת, ערבה, מעבר לקו הירוק ורמת הגולן — זמני האספקה ארוכים יותר, עד 7 ימי עסקים.
⚡
פרטים על משלוח מהיר (1-2 ימים)
▼
משלוח זה זמין אך ורק באזור גוש דן.
הזמנות שיבוצעו לאחר 12:00 לא ייחשבו כאותו יום עבודה — יישלחו ביום העסקים הבא.
📬
מה זה נקודת איסוף / לוקר?
▼
החבילה שלכם תגיע ללוקר אלקטרוני מאובטח או חנות נוחות במיקום הקרוב אליכם. תקבלו הודעה כשהיא מוכנה לאיסוף — פשוט וקל!
בחרו "איסוף עצמי" בעמוד התשלום — ההזמנה תוכן ותחכה לכם בדוכן שלנו בקניון עזריאלי תל אביב תוך עד 4 שעות.
💡 טיפ: גרים קרוב לאחד הדוכנים? אפשר גם פשוט לבוא ולהכין מתנה במקום תוך כמה דקות!
📍
הדוכנים שלנו
✅ איסוף הזמנות + הכנה במקום
קניון עזריאלי תל אביב
דרך מנחם בגין 132, ת"א
📍 קומה ראשונה, מול מגה ספורט
⚡ הכנה במקום תוך דקות
א׳–ה׳: 09:30 – 22:00
שישי: 09:30 – 15:00
מוצ"ש: שעה מצאת השבת – 23:00
🎁 הכנה במקום
קניון הזהב ראשל"צ
דוד סחרוב 21, ראשון לציון
📍 קומה ראשונה, מול מאניה ג'ינס
⚡ הכנה במקום תוך דקות
א׳–ה׳: 09:30 – 22:00
שישי: 09:30 – 15:30
מוצ"ש: שעה מצאת השבת – 23:00
💡
שימו לב: איסוף הזמנות מהאתר מתבצע מקניון עזריאלי ת"א בלבד. בשני הדוכנים ניתן להגיע ולהכין מתנה במקום ללא הזמנה מראש!
🧦
מוכנים להזמין?
בחרו מוצר, העלו תמונה, ואנחנו נדפיס ונשלח!
לכל המתנות →