/* MoveOnPack Styles */

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e6e1 100%);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-social {
    margin-top: 2rem;
}

.contact-social a {
    color: var(--text-dark);
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: var(--primary-color);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #00A651;
  --primary-dark: #008a42;
  --primary-light: #4ddb7a;
  --secondary-color: #2563eb;
  --secondary-light: #60a5fa;
  --accent-color: #f59e0b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-color: rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  padding-top: 80px;
}

/* Global Button Styles */
.btn {
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #006b35 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Section Headings */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  padding: 0.75rem 1.5rem !important;
  color: var(--text-dark) !important;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(0, 166, 81, 0.08);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.search-form {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.search-form input {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

.search-form button:hover {
  color: var(--primary-color);
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.cart-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.snipcart-checkout {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snipcart-checkout:hover {
  background: #008a42;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

/* Mobile responsive styles */
@media (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .nav-link {
    min-width: auto;
    width: 100%;
    text-align: left;
    padding: 1rem !important;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .cart-buttons {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .hero .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .hero .carousel-caption p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .category-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .hero .carousel-caption {
    padding: 2rem 1rem;
  }
  
  .hero .carousel-caption h1 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .newsletter h2 {
    font-size: 2rem;
  }
}

/* Hero Section Styles */
.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero .carousel-item {
  position: relative;
  height: 60vh;
  min-height: 500px;
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  width: 90%;
}

.hero .carousel-caption h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .carousel-caption p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .carousel-caption .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.hero .carousel-caption .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.hero .carousel-control-prev {
  left: 2rem;
}

.hero .carousel-control-next {
  right: 2rem;
}

/* Categories Section */
.categories {
  padding: 5rem 0;
}

.category-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-content {
  padding: 2rem;
}

.category-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.category-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-content .btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Featured Products Section */
.featured-products {
  padding: 5rem 0;
  background: var(--bg-white);
}

.product-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.product-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-content h3 a:hover {
  color: var(--primary-color);
}

.product-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-content .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-content .btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
}

.newsletter h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
}

.newsletter-form .btn {
  padding: 1rem 2rem;
  border-radius: 0 50px 50px 0;
  background: var(--accent-color);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
}

.contact h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact address {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.contact address p {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.contact address i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  width: 20px;
}

.store-hours {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.store-hours h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.store-hours ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
}

.store-hours ul li:last-child {
  border-bottom: none;
}

/* Footer Styles */
footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

footer h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.25rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.store-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

footer .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
/* Privacy Policy Styles */
.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-policy h1 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-policy h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-policy h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.privacy-policy h4 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.privacy-policy p {
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}
