html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #e91e63;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f48fb1 100%);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Navbar Styles */
.navbar {
  background: rgba(233, 30, 99, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(233, 30, 99, 0.3);
  animation: slideDown 0.8s ease-out;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.9) 0%, rgba(194, 24, 91, 0.9) 100%);
  z-index: -1;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.brand-container:hover::before {
  left: 100%;
}

.brand-container:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.brand-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon {
  font-size: 2rem;
  color: #ffeaa7;
  animation: float 3s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.icon-glow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 234, 167, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  line-height: 1;
}

.brand-subtext {
  font-size: 1rem;
  font-weight: 600;
  color: #ffeaa7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-decoration {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.decoration-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: bounce 2s infinite;
}

.decoration-dot:nth-child(1) {
  animation-delay: 0s;
}

.decoration-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.decoration-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 12px 20px !important;
  border-radius: 20px;
  margin: 0 5px;
}

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

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover {
  color: #ffeaa7 !important;
  transform: translateY(-3px);
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.admin-link {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-link:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 8px 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Content */
main {
  flex: 1;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, #ad1457 0%, #880e4f 100%) !important;
  color: white !important;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
  box-shadow: 0 -4px 20px rgba(233, 30, 99, 0.3);
  margin-top: auto;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
}

.card-header {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-success:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-danger:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(244, 67, 54, 0.4);
}

/* Form Styles */
.form-control {
  border-radius: 15px;
  border: 2px solid #f8bbd9;
  padding: 15px 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  border-color: #e91e63;
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
  transform: scale(1.02);
}

/* Table Styles */
.table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.table thead th {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background: rgba(233, 30, 99, 0.05);
  transform: scale(1.01);
}

/* Menu Styles */
.menu-header {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.menu-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 6s ease-in-out infinite;
}

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

.menu-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.menu-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.category-tabs {
  margin-bottom: 50px;
}

.nav-pills .nav-link {
  border-radius: 30px;
  margin: 0 8px;
  padding: 15px 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  color: #666;
  position: relative;
  overflow: hidden;
}

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

.nav-pills .nav-link:hover::before {
  left: 100%;
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.nav-pills .nav-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  backdrop-filter: blur(10px);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2);
}

.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-placeholder {
  font-size: 3.5rem;
  color: #e91e63;
  animation: pulse 2s infinite;
}

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

.product-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
  z-index: 2;
  animation: bounce 2s infinite;
}

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

.product-info {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d3436;
}

.product-description {
  color: #636e72;
  margin-bottom: 18px;
  line-height: 1.6;
}

.product-ingredients {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
  padding: 15px;
  border-radius: 15px;
  font-size: 0.95rem;
  border-left: 4px solid #e91e63;
}

.ingredients-label {
  font-weight: 700;
  color: #2d3436;
}

.ingredients-text {
  color: #636e72;
}

/* Admin Panel Styles */
.admin-header {
  background: linear-gradient(135deg, #ad1457 0%, #880e4f 100%);
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.admin-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 8s ease-in-out infinite;
}

.admin-stats {
  margin-bottom: 40px;
}

.admin-stats .card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-stats .card:hover {
  transform: translateY(-10px) scale(1.05);
}

.admin-stats .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.admin-stats .card-text {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

/* Login Form */
.login-container {
  max-width: 450px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.login-title {
  text-align: center;
  margin-bottom: 30px;
  color: #2d3436;
  font-weight: 800;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-title {
    font-size: 2.5rem;
  }
  
  .product-card {
    margin-bottom: 25px;
  }
  
  .nav-pills .nav-link {
    margin: 5px;
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  
  .admin-stats .card {
    margin-bottom: 20px;
  }
}

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

.product-card {
  animation: fadeInUp 0.8s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fce4ec;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  border-radius: 5px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
  transform: scale(1.1);
}

/* Floating Animation for Cards */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card {
  animation: float 6s ease-in-out infinite;
}

/* Glow Effect */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(233, 30, 99, 0.3); }
  50% { box-shadow: 0 0 20px rgba(233, 30, 99, 0.6); }
}

.btn-primary:hover {
  animation: glow 2s infinite;
}

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

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

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(233, 30, 99, 0.3); }
    50% { box-shadow: 0 0 20px rgba(233, 30, 99, 0.6); }
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translate(100px, -500px);
    }
    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

/* Flower Garden Animations */
@keyframes flowerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-1deg);
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes petalFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(3deg);
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(2deg);
    }
    50% {
        transform: translateY(-4px) rotate(-1deg);
    }
    75% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: scale(1) translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3) translateY(-8px);
        opacity: 0.4;
    }
}

/* Sparkle Animation */
@keyframes sparkle {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* Hearts animation used in hero */
@keyframes heartFloat {
    0%   { transform: translateY(0) scale(0.9) rotate(45deg); opacity: 0.85; }
    50%  { transform: translateY(-18px) scale(1.05) rotate(45deg); opacity: 1; }
    100% { transform: translateY(0) scale(0.9) rotate(45deg); opacity: 0.85; }
}

/* Flower Garden Styles */
.flower-garden {
    position: relative;
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.flower-garden::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: sparkle 4s linear infinite;
    pointer-events: none; /* Dekoratif overlay tıklamayı engellemesin */
}

.flower {
    position: absolute;
    animation: flowerFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flower:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.3));
}

.flower-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.flower-1 .petals {
    transform: rotate(45deg);
}

.flower-2 {
    top: 10%;
    left: 30%;
    animation-delay: 1s;
}

.flower-2 .petals {
    transform: rotate(90deg);
}

.flower-3 {
    top: 30%;
    left: 50%;
    animation-delay: 2s;
}

.flower-3 .petals {
    transform: rotate(135deg);
}

.flower-4 {
    top: 5%;
    left: 70%;
    animation-delay: 3s;
}

.flower-4 .petals {
    transform: rotate(180deg);
}

.flower-5 {
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

.flower-5 .petals {
    transform: rotate(225deg);
}

.petals {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.petal {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #e91e63, #c2185b);
    border-radius: 50% 20% / 50% 50%;
    transform-origin: 50% 100%;
    animation: petalFloat 3s infinite ease-in-out;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.petal:nth-child(1) {
    transform: rotate(0deg) translateY(-40px);
    background: linear-gradient(45deg, #e91e63, #c2185b);
}
.petal:nth-child(2) {
    transform: rotate(45deg) translateY(-40px);
    background: linear-gradient(45deg, #f48fb1, #f06292);
}
.petal:nth-child(3) {
    transform: rotate(90deg) translateY(-40px);
    background: linear-gradient(45deg, #f8bbd9, #f48fb1);
}
.petal:nth-child(4) {
    transform: rotate(135deg) translateY(-40px);
    background: linear-gradient(45deg, #e1bee7, #ce93d8);
}
.petal:nth-child(5) {
    transform: rotate(180deg) translateY(-40px);
    background: linear-gradient(45deg, #c2185b, #ad1457);
}
.petal:nth-child(6) {
    transform: rotate(225deg) translateY(-40px);
    background: linear-gradient(45deg, #f06292, #ec407a);
}
.petal:nth-child(7) {
    transform: rotate(270deg) translateY(-40px);
    background: linear-gradient(45deg, #f48fb1, #f06292);
}
.petal:nth-child(8) {
    transform: rotate(315deg) translateY(-40px);
    background: linear-gradient(45deg, #ce93d8, #ba68c8);
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #fff, #fce4ec);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.stem {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #4caf50, #66bb6a);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #4caf50, #66bb6a);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: leafFloat 5s infinite ease-in-out;
}

.leaf-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
    transform: rotate(45deg);
}
.leaf-2 {
    top: 35%;
    left: 65%;
    animation-delay: 1s;
    transform: rotate(-30deg);
}
.leaf-3 {
    top: 55%;
    left: 45%;
    animation-delay: 2s;
    transform: rotate(60deg);
}
.leaf-4 {
    top: 75%;
    left: 75%;
    animation-delay: 3s;
    transform: rotate(-45deg);
}
.leaf-5 {
    top: 85%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(15deg);
}

.leaf:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    filter: brightness(1.1) contrast(1.1);
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: sparkleFloat 4s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.sparkle-1 {
    top: 25%;
    left: 35%;
    animation-delay: 0s;
}
.sparkle-2 {
    top: 45%;
    left: 75%;
    animation-delay: 1s;
}
.sparkle-3 {
    top: 65%;
    left: 55%;
    animation-delay: 2s;
}
.sparkle-4 {
    top: 85%;
    left: 25%;
    animation-delay: 3s;
}
.sparkle-5 {
    top: 15%;
    left: 85%;
    animation-delay: 4s;
}