@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

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

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

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

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

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

/* ==================== VARIABLES ==================== */
:root {
  --bg-dark: #1a1a1a;
  --panel-dark: #222222;
  --light-gray: #2a2a2a;
  --muted: #a0a0a0;
  --accent: #ff7700;
  --text-primary: #e6e6e6;
  --text-secondary: #b0b0b0;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Space Grotesk', Roboto, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== HEADER ==================== */
header {
  background: var(--panel-dark);
  animation: slideDown 0.6s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 16px;
  height: 72px;
  max-width: 1920px;
  margin: 0 auto;
}

.link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  text-decoration: none;
}

.background {
  background: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk', Roboto, sans-serif;
}

.link:hover .background {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.4);
  animation: pulse 1s ease-in-out infinite;
}

.margin {
  font-family: 'Space Grotesk', Roboto, sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.logo-sub {
  color: #ffffff !important;
  font-size: 0.35em;
  vertical-align: super;
  position: relative;
  top: -0.6em;
  font-weight: 300;
}

.link:hover .margin {
  color: var(--accent);
}

nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 6px 8px;
  font-family: Roboto, sans-serif;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

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

.domov {
  color: var(--accent) !important;
}

.container2 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.cart-icon:hover {
  animation: float 0.6s ease-in-out infinite;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 8px rgba(255, 119, 0, 0.5);
}

.vector-img {
  width: 24px;
  height: 24px;
  display: block;
}

.button-login {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.button-login button {
  font-family: 'Space Grotesk', Roboto, sans-serif;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  min-width: 110px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-login button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.user-menu a:hover {
  color: var(--accent);
}

.user-menu .user-profile-link {
  padding: 8px 12px;
  background: var(--light-gray);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.user-menu .user-profile-link:hover {
  background: rgba(255, 119, 0, 0.1);
}

.user-menu .admin-link {
  padding: 8px 12px;
  background: rgba(255, 119, 0, 0.2);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
}

.user-menu .admin-link:hover {
  background: rgba(255, 119, 0, 0.3);
}

.user-menu .logout-link {
  color: var(--text-secondary);
}

.user-menu .logout-link:hover {
  color: #f44336;
}

.user-menu svg {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ==================== CART SIDEBAR ==================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--panel-dark);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.1), rgba(255, 119, 0, 0.05));
  border-bottom: 2px solid rgba(255, 119, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-icon-header {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.cart-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.cart-count {
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.close-cart-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.close-cart-btn svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

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

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(42, 42, 42, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 119, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.cart-item:hover {
  border-color: rgba(255, 119, 0, 0.3);
  background: rgba(42, 42, 42, 0.7);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--muted);
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.quantity-btn svg {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
}

.quantity-btn:hover svg {
  color: white;
}

.quantity-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-item-remove:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: scale(1.1);
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
  color: #ef4444;
}

.cart-item-remove:hover svg {
  color: white;
}

.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 1rem;
}

.empty-cart-icon {
  width: 80px;
  height: 80px;
  color: var(--muted);
  opacity: 0.5;
}

.empty-cart h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.empty-cart p {
  color: var(--text-secondary);
  margin: 0;
}

.empty-cart .btn {
  margin-top: 1rem;
}

.cart-footer {
  padding: 1.5rem;
  background: rgba(42, 42, 42, 0.8);
  border-top: 2px solid rgba(255, 119, 0, 0.2);
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.cart-summary-label {
  color: var(--text-secondary);
}

.cart-summary-value {
  color: var(--text-primary);
  font-weight: 600;
}

.cart-total-row {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 119, 0, 0.2);
}

.cart-total-row .cart-summary-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-total-row .cart-summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-checkout {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-checkout:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}

.btn-checkout svg {
  width: 20px;
  height: 20px;
}

.btn-clear-cart {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-cart:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ef4444;
}

.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 3000;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.cart-notification.active {
  transform: translateX(0);
}

.cart-notification-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.notification-text {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--panel-dark) 50%, var(--light-gray) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.text-primary {
  color: var(--accent);
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5), transparent);
}

.floating-card {
  position: absolute;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 119, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 600;
}

.floating-card .icon {
  width: 24px;
  height: 24px;
}

.card-1 {
  top: -20px;
  right: -20px;
  animation: floatCard1 4s ease-in-out infinite;
}

.card-2 {
  bottom: -20px;
  left: -20px;
  animation: floatCard2 4s ease-in-out infinite 2s;
}

/* ==================== SECTIONS ==================== */
.services-section,
.products-section,
.business-section,
.stats-section {
  padding: 80px 20px;
}

.products-section,
.stats-section {
  background: rgba(42, 42, 42, 0.3);
}

.section-content {
  max-width: 1920px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.service-card {
  background: rgba(42, 42, 42, 0.5);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 119, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 119, 0, 0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.product-card {
  background: rgba(42, 42, 42, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 119, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 119, 0, 0.3);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.2), rgba(160, 160, 160, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.business-card {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.1), rgba(160, 160, 160, 0.1));
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.business-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.business-card p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.business-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.section-cta {
  text-align: center;
}

/* ==================== ANIMATIONS ==================== */
.animate-left {
  animation: fadeInUp 0.8s ease-out;
}

.animate-right {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== FOOTER ==================== */
.footer {
  background: rgba(42, 42, 42, 0.5);
  border-top: 1px solid rgba(255, 119, 0, 0.1);
}

.footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-logo .background {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}

.footer-brand {
  font-family: 'Space Grotesk', Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-title {
  font-family: 'Space Grotesk', Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 119, 0, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  header > .container {
    padding: 0 12px;
  }

  .margin {
    display: none;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--panel-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  nav.active {
    transform: translateX(0);
  }

  nav a {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(30px);
  }

  nav.active a {
    animation: fadeInUp 0.4s ease forwards;
  }

  nav.active a:nth-child(1) { animation-delay: 0.1s; }
  nav.active a:nth-child(2) { animation-delay: 0.15s; }
  nav.active a:nth-child(3) { animation-delay: 0.2s; }
  nav.active a:nth-child(4) { animation-delay: 0.25s; }
  nav.active a:nth-child(5) { animation-delay: 0.3s; }
  nav.active a:nth-child(6) { animation-delay: 0.35s; }
  
  nav .mobile-login,
  nav .mobile-user-menu {
    opacity: 0;
    transform: translateX(30px);
  }
  
  nav.active .mobile-login {
    animation: fadeInUp 0.4s ease forwards;
    animation-delay: 0.35s;
  }
  
  nav.active .mobile-user-menu {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s ease;
    transition-delay: 0.35s;
  }
  
  nav.active .mobile-user-menu a {
    animation: fadeInUp 0.4s ease forwards;
  }
  
  nav.active .mobile-user-menu a:nth-child(1) { animation-delay: 0.4s; }
  nav.active .mobile-user-menu a:nth-child(2) { animation-delay: 0.45s; }
  nav.active .mobile-user-menu a:nth-child(3) { animation-delay: 0.5s; }

  nav a:hover {
    background: rgba(255, 119, 0, 0.1);
  }

  .link {
    flex: 1;
  }

  .hamburger {
    margin-left: 8px;
  }

  .desktop-login,
  .desktop-user-menu {
    display: none !important;
  }

  .mobile-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }
  
  .mobile-user-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 8px;
  }

  .mobile-login:hover {
    background: rgba(255, 119, 0, 0.9);
  }

  .mobile-user-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
  }

  .mobile-user-profile {
    flex: 1;
    background: var(--light-gray);
  }

  .mobile-user-profile:hover {
    background: rgba(255, 119, 0, 0.1);
  }

  .mobile-admin-link {
    background: rgba(255, 119, 0, 0.2);
    color: var(--accent) !important;
    font-weight: 600;
  }

  .mobile-admin-link:hover {
    background: rgba(255, 119, 0, 0.3);
  }

  .mobile-logout-link {
    background: var(--light-gray);
    color: var(--text-secondary) !important;
  }

  .mobile-logout-link:hover {
    color: #f44336 !important;
    background: rgba(244, 67, 54, 0.1);
  }

  .mobile-user-menu svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .cart-header {
    padding: 1rem;
  }

  .cart-title {
    font-size: 1.25rem;
  }

  .cart-body {
    padding: 1rem;
  }

  .cart-item {
    padding: 0.75rem;
  }

  .cart-item-image {
    width: 60px;
    height: 60px;
  }

  .cart-footer {
    padding: 1rem;
  }

  .footer-content {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
  }
}

@media (min-width: 769px) {
  .mobile-login,
  .mobile-user-menu {
    display: none !important;
  }
}
