/* Mirusa by Sandy - Custom CSS */

/* -------------------- Variables -------------------- */
:root {
  /* Color Palette */
  --blush-pink: #f6d9d8;
  --champagne: #f3e2c7;
  --warm-cream: #fff6eb;
  --rich-black: #141414;
  --soft-gold: #d4b07d;
  --button-beige: #e5c49b;
  --elegant-white: #f9f7f6;
  --dusty-rose: #d9a8a8;
  
  /* Font Families */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--elegant-white);
  color: var(--rich-black);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--rich-black);
  border: 1px solid var(--dusty-rose);
}

.btn-secondary:hover {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* -------------------- Header/Navbar -------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--elegant-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 60px;
  width: auto;
}

.logo img {
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--dusty-rose);
  transition: width 0.3s ease;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

/* -------------------- Hero Section -------------------- */
.hero {
  position: relative;
  height: 80vh;
  background-color: var(--blush-pink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(246, 217, 216, 0.7), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: slideInLeft 1.2s ease forwards;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: slideInLeft 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  opacity: 0;
  z-index: 2;
  animation: float 6s ease-in-out infinite, zoomIn 1.5s ease forwards;
}

/* -------------------- Categories Section -------------------- */
.categories {
  padding: 5rem 0;
  background-color: var(--elegant-white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.category-card {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
}

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

.category-card:hover .category-img {
  transform: scale(1.1) rotate(1deg);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.7), transparent);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-line {
  width: 0;
  height: 2px;
  background-color: var(--soft-gold);
  transition: width 0.3s ease;
}

.category-card:hover .category-line {
  width: 100%;
}

.category-link {
  color: white;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.category-card:hover .category-link {
  opacity: 1;
  transform: translateY(0);
}

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

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 30px;
  background-color: rgba(246, 217, 216, 0.3);
  color: var(--rich-black);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
}

.filter-btn:hover:not(.active) {
  background-color: var(--blush-pink);
}

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

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
  transform: translateY(-15px);
}

.product-img-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-action {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-action {
  transform: translateY(0);
}

.product-action-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--soft-gold);
  color: var(--rich-black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-action-btn:hover {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  color: var(--soft-gold);
  font-weight: 600;
}

.product-category {
  color: #777;
  font-size: 0.875rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* -------------------- About Section -------------------- */
.about {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(246, 217, 216, 0.3);
  z-index: -1;
}

.about-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.2;
  z-index: 0;
}

.about-decoration.left {
  top: 50px;
  left: 50px;
  animation: float 6s ease-in-out infinite;
}

.about-decoration.right {
  bottom: 50px;
  right: 50px;
  animation: float 6s ease-in-out infinite 2s;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-logo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 2;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-line {
  width: 80px;
  height: 3px;
  background-color: var(--soft-gold);
  margin-bottom: 1.5rem;
}

.about-description {
  margin-bottom: 1.5rem;
}

/* -------------------- Custom Design Form -------------------- */
.custom-design {
  padding: 5rem 0;
  background-color: var(--warm-cream);
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--elegant-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-layout {
  display: flex;
}

.form-image {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.form-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(20, 20, 20, 0.6), transparent);
}

.form-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  color: white;
}

.form-image-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-content {
  flex: 2;
  padding: 2rem;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-secondary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px rgba(217, 168, 168, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.form-btn {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background-color: var(--soft-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* -------------------- Testimonials Section -------------------- */
.testimonials {
  padding: 5rem 0;
  background-color: rgba(243, 226, 199, 0.3);
}

.testimonials-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background-color: var(--elegant-white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid rgba(212, 176, 125, 0.2);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--dusty-rose);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  text-align: center;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--dusty-rose);
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--elegant-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background-color: var(--dusty-rose);
  color: var(--elegant-white);
}

.testimonial-prev {
  left: -20px;
}

.testimonial-next {
  right: -20px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--dusty-rose);
}

/* -------------------- Footer -------------------- */
.footer {
  background-color: var(--rich-black);
  color: white;
  padding-top: 4rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  background-color: var(--elegant-white);
}

.footer-logo-text {
  font-size: 1.5rem;
  font-family: var(--font-primary);
}

.footer-about {
  color: #aaa;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(217, 168, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: var(--dusty-rose);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
  color: #aaa;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--dusty-rose);
}

.footer-newsletter {
  padding: 2rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-text {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.75rem;
  background-color: #222;
  border: 1px solid #444;
  border-radius: 4px;
  color: white;
  font-family: var(--font-secondary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--dusty-rose);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--dusty-rose);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--soft-gold);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-copyright {
  color: #777;
  font-size: 0.875rem;
}

.footer-signature {
  margin-top: 1rem;
}

.footer-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: rgba(217, 168, 168, 0.4);
}

/* -------------------- Animations -------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* -------------------- Media Queries -------------------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-line {
    margin: 0 auto 1.5rem;
  }
  
  .form-layout {
    flex-direction: column;
  }
  
  .form-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--elegant-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Animated elements */
.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Additional animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Enhanced hero section animations */
.hero-title {
  animation: slideInLeft 1.2s ease forwards;
}

.hero-description {
  animation: slideInLeft 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  animation: slideInLeft 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero-decoration {
  animation: float 6s ease-in-out infinite, zoomIn 1.5s ease forwards;
  opacity: 0;
}

/* Button hover effects */
.btn:hover {
  animation: pulse 0.8s ease infinite;
}

/* Card hover animations */
.category-card:hover .category-img {
  transform: scale(1.1) rotate(1deg);
}

/* Product card enhanced animations */
.product-card {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
  transform: translateY(-15px);
}

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

/* Enhanced navigation effects */
.nav-link::after {
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Form input focus animations */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Animated section borders */
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: var(--dusty-rose);
  margin: 10px auto 0;
  transition: width 1.5s ease;
}

.section-title.active::after {
  width: 100px;
}

/* Enhanced testimonial transitions */
.testimonial-track {
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Newsletter form animation */
.newsletter-form {
  position: relative;
  overflow: hidden;
}

.newsletter-btn {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--soft-gold);
  transition: all 0.4s ease;
  z-index: -1;
}

.newsletter-btn:hover::before {
  left: 0;
}

/* Logo animation */
.logo img {
  transition: transform 0.5s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

/* Add grain texture to background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/png;base64,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');
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}

/* Pulsing category card animation */
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 168, 168, 0.3);
  border-radius: 8px;
  transform: scale(0.9);
  opacity: 0;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

/* Custom cursor for buttons */
.btn, .footer-social-link, .nav-link, .category-card, .product-card {
  cursor: pointer;
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
} 