/* ===== CSS Variables ===== */
:root {
  --primary: #1F95B1;
  --accent: #5CB9A4;
  --text: #0f172a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
}

:dark {
    /* --- BRAND COLORS (UNTOUCHED) --- */
    --primary: #1F95B1;        /* Main Brand Color (Blue-Teal) */
    --accent: #5CB9A4;         /* Secondary Accent Color (Greenish-Teal) */

    /* --- BACKGROUNDS (INVERTED TO DARK) --- */
    --bg: #0a0a0a;             /* Very Dark Charcoal/Near-Black (main background) */
    --bg-light: #1a1a1a;       /* Slightly lighter dark color for cards/sections */
    
    /* --- TEXT (INVERTED TO LIGHT) --- */
    --text: #f0f0f0;           /* Light text for dark background */
    --text-muted: #888888;     /* Muted grey for supporting text */
    
    /* --- BORDERS & DIVIDERS --- */
    --border: #2c2c2c;          /* Dark border color for subtle separation */
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Brand Section (Left) */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

.navbar-text {
  display: flex;
  flex-direction: column;
}

.navbar-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.navbar-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.2;
  margin: 0;
}

/* Center Nav (Desktop) */
.navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Right Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  color: var(--text);
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

.cart-badge.visible {
  display: flex;
  animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.shop-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.shop-btn:active {
  transform: translateY(0);
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  border-radius: 8px;
  transition: background 0.2s ease;
  color: var(--text);
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger {
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.mobile-overlay-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-overlay-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.mobile-overlay-close:hover {
  color: var(--accent);
}

.mobile-overlay-close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-cta {
  margin-top: auto;
}

.mobile-cta .shop-btn {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -1px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(124, 58, 237, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Slideshow Controls */
.slideshow-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slide-nav {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.slide-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slide-nav:active {
  transform: scale(0.95);
}

.slide-nav svg {
  width: 20px;
  height: 20px;
}

.slide-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background: white;
  width: 32px;
  border-radius: 5px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== General Section Styling ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ===== Featured Products Section ===== */
.featured-products {
    background: var(--bg-light); /* Subtle background contrast */
    padding-top: 60px;
    padding-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    padding: 0 15px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding: 0 15px;
}

.card-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 0 15px;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.view-all-cta {
    text-align: center;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--bg-light); /* Use a light background for contrast */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary); /* Accent border */
    display: flex;
    flex-direction: column;
}

.quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    flex-grow: 1; /* Ensures cards are same height */
}

.customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--border);
    padding-top: 15px;
}

.customer-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.customer-location {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-summary {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    color: var(--text);
}

.star-rating {
    color: #ffc107; /* Standard gold star color */
    font-size: 24px;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* ===== Core Value Propositions Section (Revised) ===== */
.value-props {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--bg); 
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    height: 100%; /* Ensures all cards are same height */
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    background: #f0f7f9; /* Light, subtle blue hover */
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--accent); /* Your secondary brand color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(92, 185, 164, 0.4);
}

.feature-icon {
    width: 30px;
    height: 30px;
    stroke-width: 1.5; /* Slightly thinner stroke for cleaner look */
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Product Categories Section (The new #products) ===== */
.category-grid-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--bg-light); /* Give it a light, soft background */
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    display: block;
    text-decoration: none;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.category-image-wrapper {
    height: 180px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #eee;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    padding: 0 15px;
}

.category-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding: 0 15px;
}

.category-link-btn {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 20px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.category-card:hover .category-link-btn {
    background: var(--accent);
}

/* ===== Contact Information & Anchor Section ===== */
.contact-anchor {
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--bg); /* White background for separation */
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.contact-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-detail, .contact-address {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-icon {
    font-size: 18px;
    color: var(--accent);
}

.contact-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.btn-secondary-contact {
    /* Style for secondary button in a light card */
    display: inline-block;
    padding: 10px 18px;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary);
    background: none;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary-contact:hover {
    background: var(--primary);
    color: white;
}

.btn-full-width {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

/* ===== Footer Section ===== */
.footer {
    background: #1e293b; /* Dark background for a professional look */
    color: #cbd5e1; /* Light gray text */
    padding-top: 50px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col {
    padding-right: 15px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand .navbar-logo {
    width: 32px;
    height: 32px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-address {
    font-weight: 600;
    color: var(--accent);
}

.col-heading {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.col-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.social-icon:hover {
    background: var(--accent);
}

.payment-methods {
    font-size: 13px;
    font-style: italic;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* ===== Newsletter Signup Section ===== */
.newsletter-signup {
    background: #f0f7f9; /* Light, soft background for appeal */
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content {
    max-width: 500px;
}

.newsletter-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.newsletter-subtext {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: var(--text);
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.check-icon {
    font-size: 16px;
    color: var(--primary);
    margin-right: 10px;
    font-weight: 800;
}

.newsletter-form-wrapper {
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.email-input {
    flex-grow: 1;
    padding: 12px 15px;
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 149, 177, 0.2);
}

.newsletter-btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.privacy-text {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .newsletter-flex {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-content, .newsletter-form-wrapper {
        max-width: 100%;
        text-align: center;
    }
    .newsletter-benefits {
        justify-content: center;
        margin-top: 20px;
    }
    .newsletter-form {
        flex-direction: column;
        width: 80%;
        margin: 0 auto 10px auto;
    }
    .privacy-text {
        text-align: center;
        width: 80%;
        margin: 5px auto 0 auto;
    }
}

/* Responsive adjustments for Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        padding-right: 0;
    }
    .col-heading {
        text-align: center;
        margin-top: 30px;
    }
    .col-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .navbar-actions .shop-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-subtitle {
    display: none;
  }
}
