/* Ariana's Cookies - Armenian Cookie Customization Website */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --primary-color: #D2691E;
  --secondary-color: #FFB6C1;
  --tertiary-color: #98FB98;
  --background-cream: #FDF5E6;
  --text-dark: #8B4513;
  --text-light: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(139, 69, 19, 0.15);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(to bottom, #ffe3bb 0%, #fed195 100%);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated background elements */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-cookie {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
  user-select: none;
}

.floating-cookie:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-cookie:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.floating-cookie:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-cookie:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 1s; }
.floating-cookie:nth-child(5) { top: 60%; left: 70%; animation-delay: 3s; }
.floating-cookie:nth-child(6) { top: 40%; right: 40%; animation-delay: 5s; }
.floating-cookie:nth-child(7) { bottom: 50%; left: 5%; animation-delay: 1.5s; }
.floating-cookie:nth-child(8) { top: 70%; right: 25%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.15;
  }
  25% { 
    transform: translateY(-15px) rotate(2deg) scale(1.1); 
    opacity: 0.25;
  }
  50% { 
    transform: translateY(-30px) rotate(5deg) scale(1.2); 
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-15px) rotate(-2deg) scale(1.1); 
    opacity: 0.25;
  }
}

/* Header Styles */
.navbar {
  background: #ffe3bb;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark) !important;
  text-decoration: none;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

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

.navbar-slogan {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  font-style: italic;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  background: var(--primary-color);
  color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #ffe3bb;
}

/* Hero Background Animation */
.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-floating-cookie {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  animation: hero-float 10s ease-in-out infinite;
  user-select: none;
}

.hero-floating-cookie:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.hero-floating-cookie:nth-child(2) { top: 25%; right: 10%; animation-delay: 1s; }
.hero-floating-cookie:nth-child(3) { bottom: 40%; left: 15%; animation-delay: 2s; }
.hero-floating-cookie:nth-child(4) { bottom: 25%; right: 5%; animation-delay: 3s; }
.hero-floating-cookie:nth-child(5) { top: 45%; left: 80%; animation-delay: 4s; }
.hero-floating-cookie:nth-child(6) { top: 65%; right: 70%; animation-delay: 1.5s; }
.hero-floating-cookie:nth-child(7) { bottom: 60%; left: 2%; animation-delay: 2.5s; }
.hero-floating-cookie:nth-child(8) { top: 80%; right: 15%; animation-delay: 0.5s; }
.hero-floating-cookie:nth-child(9) { top: 10%; left: 60%; animation-delay: 3.5s; }
.hero-floating-cookie:nth-child(10) { bottom: 10%; left: 40%; animation-delay: 4.5s; }

@keyframes hero-float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
    opacity: 0.2;
  }
  25% { 
    transform: translateY(-20px) rotate(3deg) scale(1.15); 
    opacity: 0.35;
  }
  50% { 
    transform: translateY(-40px) rotate(7deg) scale(1.3); 
    opacity: 0.3;
  }
  75% { 
    transform: translateY(-20px) rotate(-3deg) scale(1.15); 
    opacity: 0.35;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.hero-slogan {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-style: italic;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 10px rgba(210, 105, 30, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(210, 105, 30, 0.6)); }
}

/* Responsive logo styling */
@media (max-width: 768px) {
  .navbar-logo {
    height: 45px;
  }
  
  .navbar-slogan {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 40px;
  }
  
  .navbar-slogan {
    font-size: 0.6rem;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  opacity: 0.8;
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--primary-color), #FF6347);
  border: none;
  color: var(--text-light);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
  color: var(--text-light);
}

/* Animated Cookie Characters */
.cookie-character {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  margin: 1rem;
  cursor: pointer;
  transition: var(--transition);
  animation: bounce 2s ease-in-out infinite;
}

.cookie-character:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

.cookie-round {
  background: linear-gradient(135deg, #DEB887, #CD853F);
  box-shadow: inset 0 0 0 8px #8B4513, var(--shadow-soft);
}

.cookie-heart {
  background: linear-gradient(135deg, var(--secondary-color), #FF69B4);
  border-radius: 0;
  transform: rotate(-45deg);
  box-shadow: var(--shadow-soft);
}

.cookie-heart::before,
.cookie-heart::after {
  content: '';
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.cookie-heart::before {
  top: -37.5px;
  left: 0;
}

.cookie-heart::after {
  top: 0;
  left: -37.5px;
}

.cookie-star {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

/* Cookie faces */
.cookie-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

.cookie-eyes {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 10px;
}

.cookie-eye {
  width: 12px;
  height: 12px;
  background: var(--text-dark);
  border-radius: 50%;
  animation: blink 3s infinite;
}

.cookie-mouth {
  width: 30px;
  height: 15px;
  border: 3px solid var(--text-dark);
  border-top: none;
  border-radius: 0 0 30px 30px;
  margin: 0 auto;
}

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

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

/* Cookie arms and legs */
.cookie-limbs {
  position: absolute;
  width: 8px;
  height: 30px;
  background: var(--text-dark);
  border-radius: 10px;
}

.cookie-arm-left {
  top: 30%;
  left: -15px;
  transform: rotate(-30deg);
  animation: wave-left 2s ease-in-out infinite;
}

.cookie-arm-right {
  top: 30%;
  right: -15px;
  transform: rotate(30deg);
  animation: wave-right 2s ease-in-out infinite;
}

.cookie-leg-left {
  bottom: -15px;
  left: 30%;
  animation: kick-left 3s ease-in-out infinite;
}

.cookie-leg-right {
  bottom: -15px;
  right: 30%;
  animation: kick-right 3s ease-in-out infinite;
}

@keyframes wave-left {
  0%, 100% { transform: rotate(-30deg); }
  50% { transform: rotate(-60deg); }
}

@keyframes wave-right {
  0%, 100% { transform: rotate(30deg); }
  50% { transform: rotate(60deg); }
}

@keyframes kick-left {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-15deg); }
}

@keyframes kick-right {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.feature-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--text-light);
  font-size: 2rem;
}

/* Customizer Styles */
.customizer-container {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.shape-selector,
.flavor-selector,
.color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.shape-option,
.flavor-option,
.color-option {
  padding: 1rem;
  border: 3px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--background-cream);
}

.shape-option:hover,
.flavor-option:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.shape-option.selected,
.flavor-option.selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--text-light);
}

.color-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--text-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.color-option:hover,
.color-option.selected {
  border-color: var(--text-dark);
  transform: scale(1.1);
}

/* Drawing Canvas */
.drawing-canvas {
  border: 3px dashed var(--primary-color);
  border-radius: var(--border-radius);
  cursor: crosshair;
  margin: 1rem 0;
  background: var(--text-light);
}

.canvas-tools {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.canvas-tool {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  background: var(--text-light);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.canvas-tool:hover,
.canvas-tool.active {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Preview Section */
.cookie-preview {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin: 2rem 0;
}

.preview-cookie-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-cookie {
  width: 150px;
  height: 150px;
  position: relative;
  transition: var(--transition);
  animation: gentle-bounce 3s ease-in-out infinite;
  background: linear-gradient(135deg, #DEB887, #CD853F);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

/* Preview cookie shapes */
.preview-cookie.cookie-round {
  border-radius: 50%;
  background: linear-gradient(135deg, #DEB887, #CD853F);
}

.preview-cookie.cookie-heart {
  border-radius: 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--secondary-color), #FF69B4);
}

.preview-cookie.cookie-heart::before,
.preview-cookie.cookie-heart::after {
  content: '';
  width: 75px;
  height: 75px;
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.preview-cookie.cookie-heart::before {
  top: -37.5px;
  left: 0;
}

.preview-cookie.cookie-heart::after {
  top: 0;
  left: -37.5px;
}

.preview-cookie.cookie-star {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border-radius: 0;
  transform: none;
}

.preview-cookie.cookie-flower {
  background: linear-gradient(135deg, #FF69B4, #DDA0DD);
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 85% 60%, 100% 90%, 50% 75%, 0% 90%, 15% 60%, 0% 35%, 20% 10%);
  border-radius: 0;
  transform: none;
}

/* Dynamic shape support for admin-added shapes */
.preview-cookie.cookie-dynamic {
  background: linear-gradient(135deg, #DEB887, #CD853F);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shape-icon-preview {
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Preview cookie face adjustments */
.preview-cookie .cookie-face {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.preview-cookie.cookie-heart .cookie-face {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Custom design overlay styles */
.custom-design-overlay {
  pointer-events: none;
}

.preview-cookie.cookie-heart .custom-design-overlay {
  /* Heart shape needs special handling */
}

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

/* Form Styles */
.form-group {
  margin: 1.5rem 0;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.2);
}

/* Review Cards */
.review-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-soft);
  border-left: 5px solid var(--primary-color);
}

.rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Blog Styles */
.blog-post {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.blog-post h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Admin Styles */
.admin-sidebar {
  background: var(--text-dark);
  color: var(--text-light);
  min-height: 100vh;
  padding: 2rem 1rem;
}

.admin-sidebar .nav-link {
  color: var(--text-light) !important;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 0.5rem 0;
  transition: var(--transition);
}

.admin-sidebar .nav-link:hover {
  background: var(--primary-color);
}

.admin-card {
  background: var(--text-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--primary-color);
}

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

.stat-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

/* Alerts */
.alert {
  border-radius: var(--border-radius);
  border: none;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-weight: 600;
}

.alert-success {
  background: rgba(152, 251, 152, 0.2);
  color: #2E7D2E;
  border-left: 4px solid #2E7D2E;
}

.alert-error {
  background: rgba(255, 99, 99, 0.2);
  color: #CC0000;
  border-left: 4px solid #CC0000;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .cookie-character {
    width: 100px;
    height: 100px;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .admin-stats {
    grid-template-columns: 1fr;
  }
  
  .shape-selector,
  .flavor-selector,
  .color-selector {
    justify-content: center;
  }
  
  .canvas-tools {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn-primary-custom {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .cookie-character {
    width: 80px;
    height: 80px;
    margin: 0.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .customizer-container {
    padding: 1rem;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--background-cream);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Color Palette Styling */
.color-palette {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-row {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.color-row:last-child {
    margin-bottom: 0;
}

.canvas-tool.brush-color {
    width: 35px;
    height: 35px;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 2px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-tool.brush-color:hover {
    transform: scale(1.1);
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.canvas-tool.brush-color.active {
    border-color: #007bff;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

.canvas-tool.brush-color i {
    font-size: 24px;
    border-radius: 3px;
}

.canvas-tools {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.canvas-tool {
    margin: 0 3px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.canvas-tool:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-1px);
}

.canvas-tool.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
