/*
  Buycrafter - Premium Wellness & Fitness
  CSS Stylesheet
*/

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

/* Custom Properties */
:root {
  /* Colors */
  --buycrafter-white: #ffffff;
  --buycrafter-green-light: #A5DD9B;
  --buycrafter-green-lighter: #C5EBAA;
  --buycrafter-yellow: #F6F193;
  --buycrafter-orange: #F2C18D;
  --buycrafter-dark: #333333;
  --buycrafter-gray: #666666;
  --buycrafter-light-gray: #f5f5f5;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--buycrafter-dark);
  background-color: var(--buycrafter-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--buycrafter-green-light);
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--buycrafter-green-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--buycrafter-orange);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

section {
  padding: var(--space-xxl) 0;
}

.buycrafter-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.buycrafter-section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.buycrafter-section-header h2 {
  margin-bottom: var(--space-sm);
}

.buycrafter-section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.buycrafter-section-header p {
  color: var(--buycrafter-gray);
  font-size: 1.1rem;
}

/* Button Styles */
.buycrafter-btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.buycrafter-btn-primary:hover {
  background-color: var(--buycrafter-green-lighter);
  color: var(--buycrafter-dark);
  transform: translateY(-3px);
}

.buycrafter-btn-secondary {
  background-color: var(--buycrafter-yellow);
  color: var(--buycrafter-dark);
}

.buycrafter-btn-secondary:hover {
  background-color: var(--buycrafter-orange);
  color: var(--buycrafter-white);
  transform: translateY(-3px);
}

/* Header & Navigation */
.buycrafter-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding:  0;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.buycrafter-header .buycrafter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buycrafter-logo {
  max-width: 200px;
}

.buycrafter-menu {
  display: flex;
  gap: var(--space-xl);
}

.buycrafter-menu li a {
  color: var(--buycrafter-dark);
  font-weight: 500;
  position: relative;
}

.buycrafter-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--buycrafter-green-light);
  transition: width 0.3s ease;
}

.buycrafter-menu li a:hover {
  color: var(--buycrafter-green-light);
}

.buycrafter-menu li a:hover::after {
  width: 100%;
}

.buycrafter-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.buycrafter-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--buycrafter-dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.buycrafter-hero {
  padding: calc(var(--space-xxl) * 2) 0 var(--space-xxl);
  background: linear-gradient(135deg, rgba(197, 235, 170, 0.2) 0%, rgba(165, 221, 155, 0.2) 100%);
}

.buycrafter-hero .buycrafter-container {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
}

.buycrafter-hero-content {
  flex: 1;
}

.buycrafter-hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.buycrafter-image-slideshow {
  display: flex;
  width: 300%;
  animation: slideshow 15s infinite ease-in-out;
  height: 350px;
}

.buycrafter-image-slideshow img {
  width: 33.333%;
  object-fit: cover;
  height: 500px;
}

@keyframes slideshow {
  0%, 33% {
    transform: translateX(0);
  }
  36%, 66% {
    transform: translateX(-33.333%);
  }
  69%, 99% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0);
  }
}

.buycrafter-hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* About Section */
.buycrafter-about {
  background-color: var(--buycrafter-light-gray);
}

.buycrafter-about-content {
  display: flex;
  gap: var(--space-xxl);
  align-items: center;
}

.buycrafter-about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.buycrafter-about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.buycrafter-about-image:hover img {
  transform: scale(1.05);
}

.buycrafter-about-text {
  flex: 1;
}

.buycrafter-about-features {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.buycrafter-feature {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--buycrafter-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buycrafter-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.buycrafter-feature-icon {
  margin: 0 auto var(--space-md);
}

.buycrafter-feature h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.buycrafter-feature p {
  font-size: 0.9rem;
  color: var(--buycrafter-gray);
  margin-bottom: 0;
}

/* Classes Section */
.buycrafter-classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.buycrafter-class-card {
  background-color: var(--buycrafter-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buycrafter-class-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.buycrafter-class-image {
  height: 200px;
  overflow: hidden;
}

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

.buycrafter-class-card:hover .buycrafter-class-image img {
  transform: scale(1.1);
}

.buycrafter-class-content {
  padding: var(--space-lg);
}

.buycrafter-class-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--buycrafter-dark);
}

.buycrafter-class-content p {
  color: var(--buycrafter-gray);
  margin-bottom: var(--space-md);
}

.buycrafter-class-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.buycrafter-class-details li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--buycrafter-gray);
}

/* Pricing Section */
.buycrafter-pricing {
  background-color: var(--buycrafter-light-gray);
}

.buycrafter-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.buycrafter-pricing-card {
  background-color: var(--buycrafter-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: var(--space-xl);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buycrafter-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.buycrafter-pricing-featured {
  border: 2px solid var(--buycrafter-green-light);
  transform: scale(1.05);
  z-index: 10;
}

.buycrafter-pricing-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.buycrafter-pricing-badge {
  position: absolute;
  top: 0;
  right: var(--space-xl);
  background-color: var(--buycrafter-green-light);
  color: var(--buycrafter-white);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
}

.buycrafter-pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.buycrafter-pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.buycrafter-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buycrafter-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--buycrafter-dark);
  line-height: 1;
}

.buycrafter-period {
  font-size: 0.9rem;
  color: var(--buycrafter-gray);
}

.buycrafter-pricing-features {
  margin-bottom: var(--space-xl);
}

.buycrafter-pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.buycrafter-pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.buycrafter-pricing-cta {
  text-align: center;
}

/* Schedule Section */
.buycrafter-schedule-tabs {
  background-color: var(--buycrafter-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.buycrafter-schedule-nav {
  display: flex;
  overflow-x: auto;
  background-color: var(--buycrafter-green-lighter);
}

.buycrafter-tab-btn {
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--buycrafter-dark);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.buycrafter-tab-btn:hover {
  background-color: var(--buycrafter-green-light);
  color: var(--buycrafter-white);
}

.buycrafter-tab-btn.active {
  background-color: var(--buycrafter-green-light);
  color: var(--buycrafter-white);
}

.buycrafter-tab-content {
  display: none;
  padding: var(--space-xl);
}

.buycrafter-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buycrafter-schedule-grid {
  display: grid;
  gap: var(--space-lg);
}

.buycrafter-schedule-item {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--buycrafter-light-gray);
  border-radius: 8px;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buycrafter-schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(165, 221, 155, 0.1);
}

.buycrafter-schedule-time {
  font-weight: 600;
  color: var(--buycrafter-green-light);
}

.buycrafter-schedule-class h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.buycrafter-schedule-class p {
  font-size: 0.9rem;
  color: var(--buycrafter-gray);
  margin-bottom: 0;
}

.buycrafter-schedule-instructor {
  text-align: right;
  font-style: italic;
  color: var(--buycrafter-gray);
}

/* Testimonials Section */
.buycrafter-testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-xl);
}

.buycrafter-testimonial {
  background-color: var(--buycrafter-white);
  padding: var(--space-xl);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 var(--space-md);
}

.buycrafter-testimonial-content {
  margin-bottom: var(--space-lg);
}

.buycrafter-testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 var(--space-lg);
}

.buycrafter-testimonial-content p::before,
.buycrafter-testimonial-content p::after {
  content: '"';
  font-family: var(--font-secondary);
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  color: var(--buycrafter-green-light);
  opacity: 0.3;
}

.buycrafter-testimonial-content p::before {
  left: 0;
  top: -10px;
}

.buycrafter-testimonial-content p::after {
  right: 0;
  bottom: -10px;
}

.buycrafter-testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.buycrafter-testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--buycrafter-green-light);
}

.buycrafter-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.buycrafter-testimonial-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.buycrafter-testimonial-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--buycrafter-gray);
}

.buycrafter-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.buycrafter-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--buycrafter-light-gray);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buycrafter-dot.active {
  background-color: var(--buycrafter-green-light);
  transform: scale(1.2);
}

/* Contact Section */
.buycrafter-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
}

.buycrafter-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.buycrafter-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.buycrafter-contact-icon {
  background-color: rgba(165, 221, 155, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.buycrafter-contact-text h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}

.buycrafter-contact-text p {
  margin-bottom: 0;
  color: var(--buycrafter-gray);
}

.buycrafter-contact-form {
  background-color: var(--buycrafter-white);
  padding: var(--space-xl);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.buycrafter-form-group {
  margin-bottom: var(--space-md);
}

.buycrafter-form-group-full {
  grid-column: span 2;
}

.buycrafter-contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.buycrafter-contact-form label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.buycrafter-contact-form input,
.buycrafter-contact-form textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.buycrafter-contact-form input:focus,
.buycrafter-contact-form textarea:focus {
  outline: none;
  border-color: var(--buycrafter-green-light);
  box-shadow: 0 0 0 3px rgba(165, 221, 155, 0.2);
}

.buycrafter-contact-form button {
  grid-column: span 2;
  justify-self: center;
  margin-top: var(--space-md);
}

/* Footer */
.buycrafter-footer {
  background-color: var(--buycrafter-dark);
  color: var(--buycrafter-white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.buycrafter-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.buycrafter-footer-logo {
  margin-bottom: var(--space-lg);
}

.buycrafter-footer-info p {
  opacity: 0.8;
}

.buycrafter-footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

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

.buycrafter-social-icon:hover {
  background-color: var(--buycrafter-green-light);
  transform: translateY(-5px);
}

.buycrafter-footer h3 {
  color: var(--buycrafter-white);
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.buycrafter-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.buycrafter-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.buycrafter-footer-links a:hover {
  color: var(--buycrafter-green-light);
  padding-left: var(--space-sm);
}

.buycrafter-newsletter-form {
  display: flex;
  margin-top: var(--space-lg);
}

.buycrafter-newsletter-form input {
  flex-grow: 1;
  padding: var(--space-md);
  border: none;
  border-radius: 30px 0 0 30px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.buycrafter-newsletter-form input:focus {
  outline: none;
}

.buycrafter-newsletter-form button {
  background-color: var(--buycrafter-green-light);
  border: none;
  padding: 0 var(--space-lg);
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buycrafter-newsletter-form button:hover {
  background-color: var(--buycrafter-green-lighter);
}

.buycrafter-footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.buycrafter-footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Success Page */
.buycrafter-success {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--buycrafter-light-gray);
  padding: 0 16px;
}

.buycrafter-success-content {
  max-width: 600px;
  padding: var(--space-xxl);
  background-color: var(--buycrafter-white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buycrafter-success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(165, 221, 155, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.buycrafter-success h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.buycrafter-success p {
  color: var(--buycrafter-gray);
  margin-bottom: var(--space-xl);
}

/* Media Queries */
@media (max-width: 991px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  body {
    font-size: 16px;
  }

  /* Spacing */
  :root {
    --space-lg: 1.2rem;
    --space-xl: 1.7rem;
    --space-xxl: 2.5rem;
  }

  /* Navigation */
  .buycrafter-menu-toggle {
    display: block;
  }

  .buycrafter-menu {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    background-color: var(--buycrafter-white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .buycrafter-menu.active {
    max-height: 500px;
  }

  .buycrafter-menu li {
    width: 100%;
  }

  .buycrafter-menu li a {
    display: block;
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Hero Section */
  .buycrafter-hero .buycrafter-container {
    flex-direction: column;
  }

  .buycrafter-hero-image {
    margin-top: var(--space-lg);
  }

  .buycrafter-image-slideshow img {
    height: 150%;
  }

  /* About Section */
  .buycrafter-about-content {
    flex-direction: column;
  }

  .buycrafter-about-image img {
    height: 300px;
  }

  /* Contact Section */
  .buycrafter-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  /* Typography */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  /* Spacing */
  section {
    padding: var(--space-xl) 0;
  }

  /* Hero Section */
  .buycrafter-hero {
    padding: calc(var(--space-xl) * 2) 0 var(--space-xl);
  }

  .buycrafter-hero-cta {
    flex-direction: column;
  }

  /* Schedule Section */
  .buycrafter-schedule-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .buycrafter-schedule-instructor {
    text-align: center;
  }

  /* Footer */
  .buycrafter-footer-grid {
    gap: var(--space-xl);
  }
}

@media (max-width: 576px) {
  /* Pricing Grid */
  .buycrafter-pricing-grid {
    gap: var(--space-xl);
  }

  .buycrafter-pricing-featured {
    transform: none;
  }

  .buycrafter-pricing-featured:hover {
    transform: translateY(-10px);
  }

  /* Contact Form */
  .buycrafter-contact-form form {
    grid-template-columns: 1fr;
  }

  .buycrafter-form-group-full {
    grid-column: span 1;
  }

  .buycrafter-contact-form button {
    grid-column: span 1;
  }
  svg.svg-logo {
    width: 150px;
  }
  .buycrafter-tab-content {
    padding: 0;
  }
  .buycrafter-contact-form {
    padding: var(--space-xl) 0;
  }
  .buycrafter-container {

    padding: 0;
  }
}

@media (max-width: 360px) {
  /* Typography */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  body {
    font-size: 14px;
  }

  /* Spacing */
  :root {
    --space-md: 0.8rem;
    --space-lg: 1rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
  }

  /* Classes */
  .buycrafter-classes-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .buycrafter-testimonial {
    padding: var(--space-lg) 0;
  }
}

/* Animation for various elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buycrafter-section-header h2,
.buycrafter-section-header p,
.buycrafter-hero-content h1,
.buycrafter-hero-content p,
.buycrafter-hero-cta {
  animation: fadeInUp 1s ease forwards;
}

/* Text shadows */
h1, h2, h3 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Image zoom effect on hover */
.buycrafter-class-image img:hover,
.buycrafter-about-image img:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}


main.buycrafter-policy-content {
  margin-top: 50px;
}


.table-cookie {
  overflow: auto;
}

table.buycrafter-cookie-table, table.buycrafter-cookie-table tr th, table.buycrafter-cookie-table tr td {
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 7px;
}


thead {
  background: #a5dd9b;
  color: white;
}
