/* Base Styles */
:root {
  --primary-color: #e86c62;
  --primary-hover: #d55a50;
  --secondary-color: #3d4852;
  --secondary-hover: #2d3640;
  --accent-color: #5fb0b7;
  --light-color: #f8f9fa;
  --dark-color: #1f2937;
  --grey-color: #6b7280;
  --light-grey: #e5e7eb;
  --font-main: 'Nunito Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

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

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

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

.cta-buttons {
  margin: 2rem 0;
}

.cta-buttons .btn {
  margin: 0 10px 10px 0;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 15px;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.hero-content {
  margin-top: 2rem;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.features h2 {
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--light-color);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item img {
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.feature-item h3 {
  margin-bottom: 1rem;
}

/* Collection Preview */
.collection-preview {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.collection-preview h2 {
  margin-bottom: 3rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.collection-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.collection-item h3,
.collection-item p,
.collection-item a {
  padding: 0 1.5rem;
}

.collection-item h3 {
  margin-top: 1.5rem;
}

.collection-item a {
  display: inline-block;
  margin: 1.5rem 0;
  font-weight: 600;
  color: var(--primary-color);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials h2 {
  margin-bottom: 3rem;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 2rem;
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial h4 {
  color: var(--primary-color);
}

/* Blog Preview */
.blog-preview {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.blog-preview h2 {
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item h3,
.blog-item p,
.blog-item a {
  padding: 0 1.5rem;
}

.blog-item h3 {
  margin-top: 1.5rem;
}

.blog-item a {
  display: inline-block;
  margin: 1.5rem 0;
  font-weight: 600;
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about img {
  height: 50px;
  width: auto;
  margin: 0 auto 1rem auto;
}

.footer-about p,
.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-links ul li a {
  color: var(--light-grey);
}

.footer-links ul li a:hover {
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-policies {
  margin-bottom: 1rem;
}

.footer-policies a {
  color: var(--light-grey);
  margin: 0 10px;
}

.footer-policies a:hover {
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: none;
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  justify-content: center;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#acceptCookies {
  background-color: var(--primary-color);
  color: white;
}

#customizeCookies {
  background-color: var(--light-grey);
  color: var(--dark-color);
}

#declineCookies {
  background-color: transparent;
  color: var(--dark-color);
  border: 1px solid var(--light-grey);
}

.cookie-more-info {
  font-size: 0.9rem;
  color: var(--grey-color);
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.page-banner h1 {
  color: white;
  margin-bottom: 0;
}

/* About Page */
.about-story {
  padding: 3rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.mission-box, .vision-box {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.mission-box img, .vision-box img {
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.values {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.team {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3, .team-member p {
  padding: 0 1.5rem;
}

.team-member h3 {
  margin-top: 1.5rem;
}

.team-member p:last-child {
  margin-bottom: 1.5rem;
}

.certifications {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.certification-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  text-align: center;
}

.certification-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1rem auto;
}

/* Products Page */
.product-filter {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-tab {
  padding: 8px 16px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.filter-tab.active, .filter-tab:hover {
  background-color: var(--primary-color);
  color: white;
}

.filter-sort select {
  padding: 8px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
  background-color: white;
}

.product-collection {
  margin-bottom: 5rem;
}

.collection-description {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.product-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 1.5rem;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-item h3, .product-item p, .product-colors, .product-cta {
  padding: 0 1.5rem;
}

.product-item h3 {
  margin-top: 1.5rem;
}

.price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.product-colors {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.color.black { background-color: #000; }
.color.navy { background-color: #000080; }
.color.burgundy { background-color: #800020; }
.color.sage { background-color: #bcb88a; }
.color.coral { background-color: #ff7f50; }
.color.white { background-color: #fff; border: 1px solid #ddd; }
.color.dustyrose { background-color: #dcae96; }
.color.lavender { background-color: #b57edc; }
.color.olive { background-color: #808000; }
.color.graphite { background-color: #464646; }
.color.maroon { background-color: #800000; }
.color.cobalt { background-color: #0047ab; }
.color.crimson { background-color: #dc143c; }
.color.mint { background-color: #98fb98; }
.color.fuchsia { background-color: #ff00ff; }
.color.teal { background-color: #008080; }
.color.oatmeal { background-color: #e8e6d9; }
.color.skyblue { background-color: #87ceeb; }
.color.mauve { background-color: #e0b0ff; }
.color.heathergrey { background-color: #b8b8b8; }
.color.charcoal { background-color: #36454f; }
.color.mocha { background-color: #967969; }

.fabric-technology {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fabric-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.fabric-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
}

.size-guide {
  padding: 5rem 0;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.size-table th, .size-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--light-grey);
}

.size-table th {
  background-color: var(--light-grey);
}

.size-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.size-note {
  font-style: italic;
  color: var(--grey-color);
}

/* Blog Page */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-btn {
  padding: 8px 16px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.blog-posts {
  margin-bottom: 3rem;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-post img {
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.post-date {
  color: var(--grey-color);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-grey);
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.pagination a.active, .pagination a:hover {
  background-color: var(--primary-color);
  color: white;
}

.pagination a.next {
  width: auto;
  padding: 0 20px;
  border-radius: 20px;
}

.subscribe {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-main);
}

.subscribe-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Blog Post Page */
.blog-post-header {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.blog-post-header h1 {
  margin: 1rem 0;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.post-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-post-content {
  padding: 3rem 0;
}

.post-img {
  margin-bottom: 2rem;
}

.post-img img {
  border-radius: var(--border-radius);
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.post-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-text ul, .post-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-text ul li, .post-text ol li {
  margin-bottom: 0.5rem;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 3rem 0;
  align-items: center;
}

.post-tags span {
  font-weight: 600;
}

.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--light-grey);
  color: var(--dark-color);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.share-post {
  margin-bottom: 3rem;
  text-align: center;
}

.social-share {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-share a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-grey);
  border-radius: 50%;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 2rem 0;
}

.prev-post, .next-post {
  display: flex;
}

.prev-post a, .next-post a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.prev-post a {
  text-align: left;
}

.next-post a {
  text-align: right;
  margin-left: auto;
}

.prev-post a:hover, .next-post a:hover {
  color: var(--primary-color);
}

.prev-post i, .next-post i {
  font-size: 1.5rem;
}

.prev-post span, .next-post span {
  color: var(--grey-color);
  font-size: 0.9rem;
}

.prev-post h4, .next-post h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.prev-post i {
  margin-right: 1rem;
}

.next-post i {
  margin-left: 1rem;
}

.related-posts {
  margin-bottom: 3rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h4 {
  margin: 1.5rem 1rem;
}

.related-post a {
  display: block;
  margin: 1rem 1rem 1.5rem;
  font-weight: 600;
}

/* Contact Page */
.contact-info {
  padding: 3rem 0 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method {
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-text h3 {
  margin-bottom: 1rem;
}

.contact-text p {
  margin-bottom: 0.5rem;
}

.text-muted {
  color: var(--grey-color);
  font-size: 0.9rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius);
  font-family: var(--font-main);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-submit {
  margin-top: 2rem;
}

.map-section {
  padding: 0 0 5rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.map-overlay:hover {
  background-color: rgba(0,0,0,0.2);
}

.map-overlay p {
  background-color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
}

.faq-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
}

.modal-content {
  background-color: white;
  max-width: 500px;
  margin: 100px auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-content img {
    margin-bottom: 2rem;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .blog-post img {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .feature-grid,
  .collection-grid,
  .blog-grid,
  .team-grid,
  .fabric-grid,
  .product-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-tabs,
  .blog-filter {
    justify-content: center;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
  }
}
