/* EATKEA - Main Stylesheet */

:root {
  --ikea-blue: #0058a3;
  --ikea-yellow: #ffdb00;
  --ikea-dark: #111;
  --ikea-gray: #f5f5f5;
  --accent-orange: #ff6b35;
  --accent-green: #00c853;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--ikea-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background: var(--ikea-blue);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-box {
  width: 50px;
  height: 50px;
  background: var(--ikea-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ikea-blue);
  box-shadow: 0 4px 15px rgba(255,219,0,0.4);
  animation: float 3s ease-in-out infinite;
}

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

.logo-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--ikea-yellow);
  transition: width 0.3s;
  border-radius: 2px;
}

nav a:hover::after {
  width: 100%;
}

.cart-btn {
  background: var(--ikea-yellow);
  color: var(--ikea-dark);
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: 800;
  cursor: pointer;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(255,219,0,0.3);
}

.cart-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255,219,0,0.4);
}

.cart-btn.has-items {
  background: var(--accent-orange);
  color: white;
  animation: pulse-cart 1.5s ease-in-out infinite;
}

@keyframes pulse-cart {
  0%, 100% { box-shadow: 0 4px 15px rgba(255,107,53,0.3); }
  50% { box-shadow: 0 8px 30px rgba(255,107,53,0.6); }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--ikea-blue) 0%, #003d70 50%, #002a4d 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,219,0,0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: slideUp 1s ease-out;
}

.hero h1 span {
  color: var(--ikea-yellow);
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: slideUp 1s ease-out 0.2s both;
}

.hero-cta {
  background: var(--ikea-yellow);
  color: var(--ikea-dark);
  border: none;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
  animation: slideUp 1s ease-out 0.4s both;
  box-shadow: 0 10px 30px rgba(255,219,0,0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255,219,0,0.4);
}

/* ===== FLOATING FOOD ANIMATION ===== */
.floating-food {
  position: absolute;
  font-size: 3rem;
  animation: float-food 6s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.floating-food:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-food:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-food:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 2s; }
.floating-food:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 3s; }
.floating-food:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }

@keyframes float-food {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-30px) rotate(10deg); 
    opacity: 0.9;
  }
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 5rem 2rem;
  background: var(--ikea-gray);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--ikea-yellow);
  border-radius: 2px;
}

.cat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ikea-yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cat-img {
  height: 140px;
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: all 0.3s;
}

.cat-card:hover .cat-img {
  background: linear-gradient(135deg, var(--ikea-yellow) 0%, #ffe033 100%);
}

.cat-name {
  padding: 1.25rem;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,88,163,0.03) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.product-img {
  height: 220px;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,219,0,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-img::before {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ikea-yellow);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-badge.new { background: var(--accent-green); color: white; }
.product-badge.hot { background: var(--accent-orange); color: white; }
.product-badge.sale { background: #e53935; color: white; }

.product-info {
  padding: 1.75rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--ikea-dark);
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

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

.product-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ikea-blue);
}

.product-price .currency {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.product-price .old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.add-btn {
  background: var(--ikea-blue);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,88,163,0.3);
}

.add-btn:hover {
  background: #004a87;
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 8px 25px rgba(0,88,163,0.4);
}

.add-btn:active {
  transform: scale(0.95);
}

/* ===== 3D CANVAS SECTION ===== */
.hero-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== INSTRUCTIONS ===== */
.instructions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 2rem;
}

.instructions-content {
  max-width: 1000px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.instruction-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--ikea-yellow);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.instruction-step:hover::before {
  transform: scaleY(1);
}

.instruction-step:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ikea-blue) 0%, #004a87 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,88,163,0.3);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--ikea-dark);
  font-weight: 800;
}

.step-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.step-icon {
  font-size: 3.5rem;
  margin-left: auto;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* ===== FEATURES ===== */
.features {
  background: var(--ikea-gray);
  padding: 5rem 2rem;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature {
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s;
}

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

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce-icon 2s ease-in-out infinite;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.feature:nth-child(3) .feature-icon { animation-delay: 0.6s; }

.feature h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--ikea-dark);
}

.feature p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--ikea-blue) 0%, #003d70 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.25rem 1.75rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.newsletter-form button {
  background: var(--ikea-yellow);
  color: var(--ikea-dark);
  border: none;
  padding: 1.25rem 2.5rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255,219,0,0.3);
}

.newsletter-form button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255,219,0,0.4);
}

/* ===== CART MODAL ===== */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  backdrop-filter: blur(5px);
}

.cart-overlay.active {
  display: block;
  animation: fadeIn 0.3s;
}

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

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  z-index: 2000;
  flex-direction: column;
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-modal.active {
  display: flex;
}

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

.cart-header {
  background: var(--ikea-blue);
  color: white;
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.close-cart:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s;
  animation: slideInItem 0.3s ease-out;
}

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

.cart-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.cart-item-icon {
  font-size: 2.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.cart-item-price {
  color: var(--ikea-blue);
  font-weight: 800;
  font-size: 1.1rem;
}

.remove-item {
  background: #ff4444;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item:hover {
  background: #cc0000;
  transform: scale(1.1) rotate(90deg);
}

.cart-footer {
  padding: 1.75rem;
  border-top: 2px solid #e9ecef;
  background: #f8f9fa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--ikea-dark);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--ikea-yellow) 0%, #ffe033 100%);
  color: var(--ikea-dark);
  border: none;
  padding: 1.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,219,0,0.3);
}

.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,219,0,0.4);
}

.checkout-btn:active {
  transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ikea-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

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

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ikea-yellow);
}

.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}

.footer-col a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s;
  color: var(--ikea-yellow);
}

.footer-col a:hover {
  color: white;
  padding-left: 20px;
}

.footer-col a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.85rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .product-img {
    height: 160px;
    font-size: 3.5rem;
  }
  
  .instruction-step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .step-icon {
    margin: 0;
    order: -1;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cart-modal {
    width: 100%;
  }
  
  .floating-food {
    font-size: 2rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--ikea-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #004a87;
}

/* ===== LOADING ANIMATION ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}