/*
Theme Name: heyKitties
Author: Adisha Madhushanka
Description: heyKitties — Best Cat Food Deals on Amazon. WordPress theme built with Tailwind CSS.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
*/

/* Grain texture overlay — matches globals.css */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* Staggered fade-up for product cards */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cards-container article {
  animation: fadeUp 0.5s ease both;
}

/* Custom logo sizing */
.custom-logo-link img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Footer custom logo sizing */
footer .custom-logo-link img {
  height: 56px;
}

/* WordPress admin bar offset for sticky header */
.admin-bar header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar header {
    top: 46px !important;
  }
}
