/** Shopify CDN: Minification failed

Line 435:32 Invalid escape

**/
:root {
  --green: #1a5c2a;
  --green-dark: #0f3a1a;
  --green-light: #2d7a3e;
  --yellow: #f5c842;
  --yellow-dark: #d4a820;
  --cream: #fffdf5;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: rgba(0,0,0,0.1);
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 7px 16px;
  font-size: 13px;
}
.announcement-bar a { color: var(--yellow); font-weight: 600; }

/* HEADER / NAV */
.site-header {
  background: var(--green);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.5px;
}
.site-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,0.15); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 7px 16px;
}
.search-form input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  width: 160px;
  font-family: 'DM Sans', sans-serif;
}
.search-form input::placeholder { color: rgba(255,255,255,0.55); }
.cart-link {
  background: var(--yellow);
  color: var(--green-dark);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.cart-link:hover { background: var(--yellow-dark); color: var(--green-dark); }
.cart-count {
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* HOURS BAR */
.hours-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.hours-bar strong { color: var(--text); }
.open-pill {
  margin-left: auto;
  background: #eaf3de;
  color: #2d5a18;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  background: var(--green);
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: rgba(245,200,66,0.08);
  border-radius: 50%;
}
.hero-text { flex: 1; max-width: 560px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--yellow); color: var(--green-dark);
  font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow); color: var(--green-dark);
  border: none; padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow-dark); color: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; }
.hero-stat .val { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--yellow); }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.hero-visual { font-size: 120px; line-height: 1; position: relative; z-index: 1; }

/* SECTIONS */
.section { padding: 48px 32px; }
.section-alt { background: #f0f7f1; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text); }
.section-title span { color: var(--green); }
.section-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.section-link { font-size: 14px; color: var(--green); font-weight: 600; }
.section-link:hover { text-decoration: underline; }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sale-badge {
  position: absolute; top: 10px; left: 10px;
  background: #e24b4a; color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}
.product-img {
  height: 180px;
  background: #f9f9f4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { font-size: 64px; }
.product-body { padding: 14px; }
.product-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.product-vendor { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.product-compare-price { font-size: 13px; color: #bbb; text-decoration: line-through; }
.add-to-cart-btn {
  width: 100%; background: var(--green); color: #fff;
  border: none; padding: 9px; border-radius: 8px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.add-to-cart-btn:hover { background: var(--green-light); }
.add-to-cart-btn:disabled { background: #ccc; cursor: not-allowed; }

/* CATEGORIES */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 12px; }
.cat-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px 8px; text-align: center; cursor: pointer;
  transition: all 0.2s; display: block;
}
.cat-card:hover { border-color: var(--green); background: #f0f7f1; transform: translateY(-2px); }
.cat-icon { font-size: 32px; margin-bottom: 8px; }
.cat-name { font-size: 12px; font-weight: 500; color: var(--text-muted); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.review-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; }
.stars { color: var(--yellow); font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--text); }
.review-location { font-size: 12px; color: var(--text-muted); }

/* NEWSLETTER */
.newsletter {
  background: var(--yellow);
  padding: 40px 32px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--green-dark); }
.newsletter p { font-size: 14px; color: #2d5a18; margin-top: 4px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1; padding: 12px 18px; border: none; border-radius: 8px;
  font-size: 14px; outline: none; font-family: 'DM Sans', sans-serif;
}
.newsletter-form button {
  background: var(--green); color: #fff; border: none;
  padding: 12px 24px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif;
  white-space: nowrap; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--green-dark); }

/* FOOTER */
.site-footer { background: var(--green-dark); padding: 48px 32px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--yellow); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.footer-h { font-size: 13px; font-weight: 600; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ABOUT PAGE */
.about-hero { background: var(--green); padding: 64px 32px; text-align: center; }
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: 42px; color: #fff; margin-bottom: 12px; }
.about-hero p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 540px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.value-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 28px 20px; text-align: center; }
.value-icon { font-size: 40px; margin-bottom: 12px; }
.value-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; outline: none;
  font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--cream); transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { height: 120px; resize: vertical; }
.submit-btn {
  width: 100%; background: var(--green); color: #fff;
  border: none; padding: 13px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.submit-btn:hover { background: var(--green-light); }

/* COLLECTION / SHOP PAGE */
.collection-header { background: var(--green); padding: 40px 32px; }
.collection-header h1 { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; }
.collection-header p { color: rgba(255,255,255,0.75); margin-top: 8px; }
.collection-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 32px; }
.collection-sidebar { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; height: fit-content; }
.sidebar-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-links a { display: block; font-size: 14px; color: var(--text-muted); padding: 7px 10px; border-radius: 8px; margin-bottom: 2px; transition: all 0.2s; }
.sidebar-links a:hover,
.sidebar-links a.active { background: #f0f7f1; color: var(--green); font-weight: 500; }
.collection-sort { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.collection-sort h2 { font-family: 'Playfair Display', serif; font-size: 22px; }
.sort-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; outline: none; font-family: 'DM Sans', sans-serif; background: #fff; }

/* CART PAGE */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 32px; }
.cart-table { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 14px 20px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.cart-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 60px; height: 60px; background: #f9f9f4; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.qty-input { width: 60px; padding: 6px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-size: 14px; font-family: 'DM Sans', sans-serif; }
.cart-summary { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; height: fit-content; }
.cart-summary h2 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--text-muted); }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; margin: 16px 0; border-top: 1px solid var(--border); padding-top: 16px; }
.checkout-btn { width: 100%; background: var(--green); color: #fff; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.checkout-btn:hover { background: var(--green-dark); }

/* PRODUCT PAGE */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 32px; }
.product-gallery img { width: 100%; border-radius: var(--radius); }
.product-gallery-thumb { display: flex; gap: 8px; margin-top: 12px; }
.product-gallery-thumb img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.product-gallery-thumb img.active { border-color: var(--green); }
.product-info h1 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 8px; }
.product-info .vendor { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.product-info .price { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green); margin-bottom: 20px; }
.product-info .description { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.variant-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.variant-select { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; outline: none; }
.product-add-btn { width: 100%; background: var(--green); color: #fff; border: none; padding: 14px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; margin-bottom: 12px; }
.product-add-btn:hover { background: var(--green-light); }

/* MAP */
.map-container { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { display: block; width: 100%; }

/* SPECIALS BANNER */
.specials-hero { background: linear-gradient(135deg, #e24b4a, #c0392b); padding: 40px 32px; text-align: center; }
.specials-hero h1 { font-family: 'Playfair Display', serif; font-size: 38px; color: #fff; margin-bottom: 8px; }
.specials-hero p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* BREADCRUMB */
.breadcrumb { padding: 14px 32px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  cursor: pointer; z-index: 999;
  transition: transform 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* PAGINATION */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 32px; }
.pagination a, .pagination span {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; color: var(--text);
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current { background: var(--green); color: #fff; border-color: var(--green); }
.footer-info-btn { display: none; }
/* RESPONSIVE */
  @media (max-width: 768px) {
  .side-menu { display: flex !important; }
  .mobile-info-btn { display: block !important; }
  .hero-text { display: none; }
.hero-stats { display: none; }
.hero-badge { display: none; }
.hero-visual { display: none; }
.hero-rolling-wrap { display: none; }
.hero svg { display: none; }
.btn-primary { display: none; }
.section-alt { display: none; }
.hero { padding: 16px; justify-content: center; min-height: auto; }
.hero-btns .btn-primary { display: none; }
  .nav-links { display: none; }
  .search-form { display: none; }
  .hours-bar { display: none; }
  .hero { flex-direction: column; padding: 28px 16px; }
  .hero h1 { font-size: 26px; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; gap: 16px; }
  .hero-btns { justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .specials-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cat-card { padding: 14px 6px; }
  .cat-icon { font-size: 24px; }
  .cat-name { font-size: 10px; }\
  .footer-info-links { display: none !important; }
.footer-info-btn { display: inline-block !important; }
.mobile-home-btn { display: inline-block !important; }
  .collection-layout { grid-template-columns: 1fr; padding: 16px; }
  .collection-sidebar { display: none; }
  .footer-grid { display: none; }
.footer-bottom { display: none; }
.site-footer { padding: 20px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; padding: 16px; }
  .product-layout { grid-template-columns: 1fr; padding: 16px; }
  .section { padding: 24px 16px; }
  .newsletter { flex-direction: column; padding: 24px 16px; }
  .newsletter-form { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-ticker { display: none; }
  .home-cats-section { flex-direction: column; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { padding: 32px 16px; }
  .about-hero h1 { font-size: 28px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
.footer-grid > div:nth-child(2) { display: none; }
.footer-info-btn { display: block !important; margin: 16px; }
}
.side-menu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
}
.side-menu-tab {
  background: #1a5c2a;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
}
.side-menu-panel {
  width: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  border-radius: 0 12px 12px 0;
  transition: width 0.3s ease;
}
.side-menu:hover .side-menu-panel {
  width: 220px;
}
.side-menu-inner {
  width: 220px;
  padding: 8px;
}
.side-menu-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a5c2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 6px;
  white-space: nowrap;
}
.side-menu-item {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: #444;
  border-radius: 8px;
  transition: all 0.15s;
  font-weight: 500;
  white-space: nowrap;
}
.side-menu-item:hover {
  background: #f0f7f1;
  color: #1a5c2a;
  padding-left: 20px;
}
.side-menu-item.special { color: #e24b4a; }
.side-menu-item.special:hover { background: #fff5f5; color: #c0392b; }

@media (max-width: 768px) {
  .side-menu { display: none; }
}