/* Font Faces */
@font-face {
  font-family: 'CatPaw';
  src: url('./Fonts/CatPaw-zr0OG.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CatFont2';
  src: url('./Fonts/CatFont2.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CatFont3';
  src: url('./Fonts/font 3.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  color: #333;
  background: url('./Images/backgrounds/Background.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
}

@media (max-width: 768px) {
  body {
    background: url('./Images/backgrounds/Background mb.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 15px;
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

header {
  text-align: center;
  margin-bottom: 30 px;
}

h1 {
  font-family: 'CatPaw', 'Arial', sans-serif;
  color: #ff6b6b;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* Cat Grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Cat Cards */
.cat-card {
  position: relative;
  font-family: 'CatFont2', 'Arial', sans-serif;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cat-card img.cat-main-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.cat-card:hover img.cat-main-img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.cat-info {
  padding: 15px;
  position: relative;
}

.cat-info h3 {
  font-family: 'CatFont2', 'Arial', sans-serif;
  margin: 0 0 5px 0;
  font-size: 1.5rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-info p {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.gender-icon {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.gender-icon-small {
  width: 16px;
  height: 16px;
  min-width: 16px;
}

/* Cat Doodles in Cards */
.cat-doodle {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.cat-card:hover .cat-doodle {
  opacity: 1;
  transform: scale(1) rotate(-5deg);
  animation: floatDoodle 3s ease-in-out infinite;
}

.doodle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 40px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-top: 2px solid #ff6b6b;
  font-family: 'CatFont3', Arial, sans-serif;
}

footer p {
  margin: 0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background: white;
  margin: 50px auto;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}

.modal-body {
  position: relative;
  overflow: hidden; /* Prevent scrollbars during slide */
}

.modal-bg-container {
  position: relative;
  width: 100%;
  min-height: 100%;
  will-change: transform;
}


.modal-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.85; /* Increased opacity */
  filter: blur(1px); /* Reduced blur */
}

.modal-content-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75); /* Almost solid white */
  backdrop-filter: blur(0.5px); /* Reduced blur */
  padding: 20px; /* Added padding */
}

/* Font Faces */
@font-face {
  font-family: 'CatPaw';
  src: url('./Fonts/CatPaw-zr0OG.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CatFont2';
  src: url('./Fonts/CatFont2.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  color: #333;
  background: url('./Images/backgrounds/Background.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Reduced from 0.7 to 0.5 */
  z-index: -1;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-family: 'CatPaw', 'Arial', sans-serif;
  color: #ff6b6b;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* Cat Grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Cat Cards */
.cat-card {
  position: relative;
  font-family: 'CatFont2', 'Arial', sans-serif;
  background: rgba(255, 255, 255, 0.6); /* Increased from 0.85 to 0.9 */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cat-card img.cat-main-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.cat-card:hover img.cat-main-img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

.cat-info {
  padding: 15px;
}

.cat-info h3 {
  font-family: 'CatFont3', 'Arial', sans-serif;
  margin: 0 0 5px 0;
  font-size: 1.5rem;
  font-weight: 400;   /* normal weight */
  color: #333;
  letter-spacing: 0.5px; /* optional: improves readability */
}


.cat-info p {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.cat-info p img.gender-icon-small {
  width: 16px;
  height: 16px;
  min-width: 16px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

/* Cat Doodles */
.cat-doodle {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.cat-card:hover .cat-doodle {
  opacity: 1;
  transform: scale(1) rotate(-5deg);
  animation: floatDoodle 3s ease-in-out infinite;
}

.doodle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.2));
}

/* Color variations for doodles */
.cat-card:nth-child(odd) .cat-doodle { color: #ff6b6b; }
.cat-card:nth-child(even) .cat-doodle { color: #6b8cff; }

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background: white;
  margin: 50px auto;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s;
}

.modal-bg-container {
  position: relative;
  width: 100%;
  min-height: 100%;
}

.modal-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--cat-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.85;
  filter: blur(1px);
}

.modal-content-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(0.5px);
  padding: 20px;
}

.modal-header {
  position: relative;
  padding: 15px 20px;
  background: transparent; /* no separate background */
  color: white; /* ensure text/icons are visible */
}

.modal-body-content {
  padding: 20px;
}

.modal-cat-img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cat Header Styles */
.cat-header {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 5px 0 0 20px;
}

/* Name and Doodle Container */
.name-doodle-container {
  font-family: 'CatFont3', Arial, sans-serif;
  display: flex;
  align-items: center;  /* Changed from flex-start to center */
  gap: 10px;
}

.modal-doodle {
  width: 65px;
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
  animation: floatDoodle 3s ease-in-out infinite;
  margin-right: 10px;
  align-self: flex-start; /* Add this to align doodle to top */
  margin-top: 5px; /* Adjust this value to fine-tune position */
}

/* Name and Nickname Container */
.name-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Add this to center vertically */
  line-height: 1;
  margin-top: 0; /* Changed from -5px */
}

.name-container h2 {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.aka {
  font-size: 0.85rem;
  color: #666;
  margin: 2px 0 0 0; /* Changed from -4px to 2px */
  padding: 0;
  font-style: italic;
  font-family: 'CatFont3', Arial, sans-serif;
  line-height: 1.1;
}

/* Animations */
@keyframes floatDoodle {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gender-icon {
  width: 28px;
  height: 28px;
  padding-right: 20px;
}

/* ============== DETAILS GRID CONTAINER ============== */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  padding: 0 20px;
  font-family: 'CatFont3', Arial, sans-serif; /* Added font family */
}

/* ============== GRID ITEM POSITIONING ============== */
/* First row items */
.detail-item:nth-child(1), /* Age */
.detail-item:nth-child(2), /* Vaccinated */
.detail-item:nth-child(3) { /* Sterilized */
  grid-row: 1;
}

/* Full-width items */
.detail-item.full-width {
  grid-column: 1 / -1;
}

/* ============== ITEM STYLES ============== */
.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Red label styling */
.detail-label {
  font-weight: 600;
  color: #ff3a3a; /* Brighter red */
  min-width: 90px;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

/* Value styling after red label */
.detail-value {
  color: #333;
  font-weight: 400;
  font-size: 0.95em;
}

.status-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px; /* Added spacing */
}

/* ============== BEHAVIOR TAGS ============== */
.behavior-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}

.tag {
  background: #ffecec;
  color: #ff6b6b;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}
/* Navigation Buttons */

.modal-navigation {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  position: sticky;
  bottom: 0;
}

.nav-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  padding: 10px 20px;
  transition: all 0.2s ease;
  border-radius: 50%;
}


.nav-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

/* Close Button - Top Right Corner */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: all 0.2s ease;
  background: none;
  border: none;
  z-index: 3;
}

.close-btn:hover {
  color: #ff6b6b;
  transform: rotate(90deg);
}

.modal-footer {
  display: none !important;
}

.cat-counter {
  font-weight: bold;
  color: #ff6b6b;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatDoodle {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  
  .modal-content {
    margin: 20px;
    max-width: 90%;
  }
  
  .modal-cat-img {
    max-height: 250px;
  }
  
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three equal columns */
  gap: 15px;
  padding: 0 20px;
}
  
  .nav-btn, .close-btn {
    font-size: 20px;
  }
  
  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .cat-doodle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .cat-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-cat-img {
    max-height: 200px;
  }
  
  .detail-label {
    min-width: 70px;
  }
  
  .cat-doodle {
    width: 40px;
    height: 40px;
  }

}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  /* ...other existing small screen styles... */
}

/* Add this to your style.css file, replacing the existing mobile media queries */

@media (max-width: 768px) {
  /* Modal adjustments */
  .modal-content {
    margin: 20px auto;
    max-width: 95%;
  }

  /* Details grid - mobile layout */
  .details-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
  }

  /* Detail items - proper alignment */
  .detail-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0;
  }

  /* Labels - fixed width for alignment */
  .detail-label {
    min-width: 100px;
    width: 100px;
    font-weight: 600;
    color: #ff3a3a;
    font-size: 0.9em;
    text-align: left;
    margin: 0;
    padding-right: 5px;
    flex-shrink: 0;
  }

  /* Values - proper alignment */
  .detail-value {
    flex: 1;
    margin: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* Status icons alignment */
  .status-icon {
    margin: 0;
    width: 20px;
    height: 20px;
  }

  /* Full width items */
  .detail-item.full-width {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .detail-item.full-width .detail-label {
    width: 100%;
    min-width: 100%;
  }

  /* Paragraphs in full-width items */
  .detail-item.full-width p {
    margin: 0;
    padding-left: 0;
    width: 100%;
  }

  /* Behavior tags */
  .behavior-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
    padding-left: 0;
  }

  /* Compact padding */
  .modal-content-wrapper {
    padding: 15px;
  }

  /* Header adjustments */
  .cat-header {
    padding: 0 15px 10px;
  }

  /* Image sizing */
  .modal-cat-img {
    max-height: 250px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .modal-content {
    margin: 10px auto;
  }
  
  .detail-label {
    min-width: 90px;
    width: 90px;
    font-size: 0.85em;
  }
  
  .modal-cat-img {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .cat-doodle {
    opacity: 1 !important;
    transform: scale(1) rotate(-5deg) !important;
    animation: floatDoodle 3s ease-in-out infinite !important;
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 480px) {
  .cat-doodle {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 768px) {
  .modal-header .nav-btn {
    display: none !important;
  }
}

.modal-footer {
  display: none !important;
}
.credits {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  padding: 10px 0;
  font-family: 'CatFont3', Arial, sans-serif;
}
@media (max-width: 768px) {
  /* Make close button bigger */
  .close-btn {
    font-size: 36px; /* bigger size */
    top: 10px;
    right: 15px;
  }

  /* Remove hover animation on mobile */
  .close-btn:hover {
    transform: none !important;
    color: #ff6b6b; /* keep hover color if you want */
  }
}
/* ===== Smooth Swipe Animations for Mobile Modal ===== */
@keyframes slideOutLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.swipe-left-out {
  animation: slideOutLeft 0.35s ease forwards;
}

.swipe-left-in {
  animation: slideInRight 0.35s ease forwards;
}

.swipe-right-out {
  animation: slideOutRight 0.35s ease forwards;
}

.swipe-right-in {
  animation: slideInLeft 0.35s ease forwards;
}

/* Ensure smooth GPU-accelerated transitions */
.modal-bg-container {
  will-change: transform;
  backface-visibility: hidden;
}

/* ===== Donation Section ===== */
.donation-section {
  text-align: center;
  margin: 60px auto;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  max-width: 520px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.donation-section h2 {
  font-family: 'CatFont3', Arial, sans-serif;
  color: #ff6b6b;
  margin-bottom: 20px;
  font-size: 1.9rem;
  letter-spacing: 1px;
}

.qr-container {
  margin: 20px 0 25px;
}

.qr-code {
  width: 250px; /* bigger for PC */
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.25s ease;
}

.qr-code:hover {
  transform: scale(1.05);
}

/* UPI Row */
.upi-text {
  font-size: 1.1rem;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: 'CatFont3', Arial, sans-serif; /* label only */
}

#upi-id {
  font-family: Arial, sans-serif;
  font-weight: normal;
  color: #222;
  background: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  user-select: all;
  font-size: 1rem;
}

.copy-btn {
  font-family: 'CatFont3', Arial, sans-serif;
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.copy-btn:hover {
  background: #ff4040;
  transform: translateY(-2px);
}

.hint {
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
  font-style: italic;
  font-family: 'CatFont3', Arial, sans-serif;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .donation-section {
    max-width: 90%;
    padding: 25px 20px;
  }

  .qr-code {
    width: 200px;
  }
}
/* Floating Donate Button - Mobile only */
#donate-float-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: 'CatFont3', Arial, sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 2000;
  display: none; /* hidden by default */
  transition: all 0.25s ease;
}

#donate-float-btn i {
  margin-right: 6px;
}

#donate-float-btn:hover {
  background: #ff4040;
  transform: translateY(-2px);
}

/* Only show on mobile */
@media (max-width: 768px) {
  #donate-float-btn {
    display: flex;
    align-items: center;
  }
}

/* ===== Mobile Search Bar (Aligned with Grid Width) ===== */
.mobile-search {
  display: none; /* hidden on desktop */
  max-width: 1000px; /* same as your .cat-grid max-width */
  margin: 15px auto; /* center horizontally */
  text-align: center;
}

.mobile-search input {
  max-width: 280px; /* same size as card */
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #ff6b6b;
  font-size: 1rem;
  font-family: 'CatFont3', Arial, sans-serif;
  outline: none;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  color: #333;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-search input:focus {
  border-color: #ff4040;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

@media (max-width: 768px) {
  .mobile-search {
    display: block;
  }
}

