/* ====== PROFESSIONAL HEADER STYLES ====== */
:root {
  --dark-bg: #0a0a0a;
  --text-light: #ffffff;
  --text-gray: #e0e0e0;
  --accent-color: #e0e0e0;
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --border-radius: 4px;
  --accent-line: #e0e0e0;
  --header-height: 80px;
  --primary: #333;
  --secondary: #777;
  --accent: #f5f5f5;
  --sale: #e63946;
  --white: #fff;
  --black: #000;
  --success: #4caf50;
  --error: #e63946;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: #f9f9f9;
  padding-top: var(--header-height);
  color: #333;
  line-height: 1.6;
}

/* ====== LUXURY HEADER ====== */
.tilda-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: var(--header-height) !important;
  background-color: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 5% !important;
  border-bottom: 1px solid rgba(224, 224, 224, 0.1) !important;
  transition: var(--transition) !important;
}

.logo-container {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  transition: var(--transition) !important;
}

.logo-link {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
}

.logo-link:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
}

.logo-img {
  height: 38px !important;
  filter: brightness(0) invert(1) !important;
  transition: var(--transition) !important;
}

/* ====== MAIN NAVIGATION ====== */
.main-nav {
  margin-left: auto !important;
}

.nav-list {
  display: flex !important;
  list-style: none !important;
  gap: 2px !important;
  flex-wrap: nowrap !important;
  justify-content: flex-end !important;
}

.nav-item {
  position: relative !important;
}

.nav-link {
  color: var(--text-gray) !important;
  text-decoration: none !important;
  font-weight: 450 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.3px !important;
  padding: 8px 10px !important;
  transition: var(--transition) !important;
  opacity: 0.9 !important;
  text-transform: uppercase !important;
  border-radius: var(--border-radius) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  position: relative !important;
}

.nav-link:hover {
  color: var(--accent-color) !important;
  opacity: 1 !important;
  background: rgba(224, 224, 224, 0.1) !important;
}

.nav-link.active {
  color: var(--accent-color) !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}

/* ====== MOBILE MENU TOGGLE ====== */
.mobile-toggle {
  display: none !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  margin-left: auto !important;
  padding: 12px !important;
  z-index: 1001 !important;
}

.hamburger {
  width: 28px !important;
  height: 20px !important;
  position: relative !important;
}

.hamburger span {
  display: block !important;
  position: absolute !important;
  height: 2px !important;
  width: 100% !important;
  background: var(--accent-color) !important;
  transition: var(--transition) !important;
  transform-origin: center !important;
}

.hamburger span:nth-child(1) { top: 0 !important; }
.hamburger span:nth-child(2) { top: 50% !important; transform: translateY(-50%) !important; }
.hamburger span:nth-child(3) { bottom: 0 !important; }

/* ====== MOBILE MENU ====== */
.mobile-menu {
  position: fixed !important;
  top: var(--header-height) !important;
  right: -100% !important;
  width: 320px !important;
  height: calc(100vh - var(--header-height)) !important;
  background-color: rgba(10, 10, 10, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  transition: var(--transition) !important;
  z-index: 999 !important;
  overflow-y: auto !important;
  padding: 40px 0 !important;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3) !important;
  border-left: 1px solid rgba(224, 224, 224, 0.1) !important;
}

.mobile-menu.active {
  right: 0 !important;
}

.mobile-menu ul {
  list-style: none !important;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(224, 224, 224, 0.1) !important;
  transition: var(--transition) !important;
}

.mobile-menu li:hover {
  background: rgba(224, 224, 224, 0.05) !important;
}

.mobile-menu a {
  color: var(--text-gray) !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
  display: block !important;
  padding: 14px 20px !important;
  transition: var(--transition) !important;
  letter-spacing: 0.3px !important;
  position: relative !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.mobile-menu a.active {
  color: var(--accent-color) !important;
  font-weight: 500 !important;
}

.mobile-menu a:hover {
  color: var(--accent-color) !important;
  padding-left: 35px !important;
}

/* ====== HAMBURGER ANIMATION ====== */
.mobile-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg) !important;
}

.mobile-toggle.active .hamburger span:nth-child(2) {
  opacity: 0 !important;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg) !important;
}

/* ====== BACKDROP ====== */
.backdrop {
  position: fixed !important;
  top: var(--header-height) !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100vh - var(--header-height)) !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
  z-index: 998 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: var(--transition) !important;
  backdrop-filter: blur(5px) !important;
}

.backdrop.active {
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ====== PARTNERS TITLE ====== */
.partners-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 50px 0 40px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

.partners-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #333, #666);
  border-radius: 2px;
}

/* ====== SEARCH BAR ====== */
.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.search-bar {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  background: transparent;
  outline: none;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.search-results {
  display: none;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #eee;
  background: white;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.search-result-item:hover {
  background-color: #f8f9fa;
}

.search-result-item:last-child {
  border-bottom: none;
}

.result-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.result-name {
  font-weight: 500;
  color: #333;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* ====== INTRO OVERLAY STYLES ====== */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: #f8f8f8;
}

.intro-title {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  color: #222;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  position: absolute;
  width: 100%;
  padding: 0 30px;
}

.intro-title.active {
  opacity: 1;
  transform: translateY(0);
}

.step {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0 30px;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.progress-container {
  position: fixed;
  bottom: 60px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #e0e0e0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.progress-container.active {
  opacity: 1;
}

.progress-bar {
  height: 100%;
  background: #222;
  width: 0%;
  transition: width 0.6s ease;
}

.skip-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid #555;
  color: #555;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 1001;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  transition: all 0.2s ease;
  opacity: 0;
}

.skip-btn.active {
  opacity: 1;
}

.skip-btn:hover {
  background: #f0f0f0;
}

.confirmation-panel {
  position: relative;
  width: 100%;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  padding: 30px 0;
  margin-top: 30px;
}

.confirmation-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #555;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  width: 100%;
}

.confirmation-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

.confirmation-btn {
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 400;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  min-width: 120px;
}

.understand-btn {
  background: #222;
  color: white;
}

.understand-btn:hover {
  background: #444;
}

.repeat-btn {
  background: #e0e0e0;
  color: #222;
  border: 1px solid #d0d0d0;
}

.repeat-btn:hover {
  background: #d0d0d0;
}

/* ====== MAIN CONTENT STYLES ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Floating Cart Button */
.floating-cart {
  position: fixed;
  bottom: 150px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 99;
  transition: var(--transition);
  transform: translateY(0);
}

.floating-cart:hover {
  background-color: #222;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.floating-cart:active {
  transform: translateY(1px) scale(0.98);
}

.cart-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-icon svg {
  width: 100%;
  height: 100%;
  color: var(--white);
  transition: inherit;
}

.floating-cart:hover .cart-icon svg {
  transform: translateY(-1px) scale(1.05);
  color: rgba(255,255,255,0.92);
  filter: drop-shadow(0 1px 2px rgba(255,255,255,0.25));
}

.floating-cart:hover .cart-icon {
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--sale);
  color: var(--white);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 0.2s ease;
}

.floating-cart:hover .cart-count {
  transform: scale(1.1);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 20px 0;
  padding: 10px 0;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tilda-header {
    padding: 0 15px !important;
  }
  
  .main-nav {
    display: none !important;
  }
  
  .mobile-toggle {
    display: block !important;
  }
  
  .nav-link {
    font-size: 0.65rem !important;
    padding: 8px 8px !important;
  }
}

@media (max-width: 768px) {
  .partners-title {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .search-container {
    margin: 10px auto 20px;
    width: 95%;
    position: static;
    top: auto;
  }

  .search-input {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .partners-title {
    font-size: 1.5rem;
    margin: 15px 0 10px;
  }

  .search-container {
    margin: 5px auto 15px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .tilda-header {
    padding: 0 12px !important;
  }
  
  .mobile-menu {
    width: 240px !important;
  }
  
  .mobile-menu a {
    font-size: 0.75rem !important;
    padding: 12px 16px !important;
  }
  
  .logo-img {
    height: 26px !important;
  }

  .partners-title {
    font-size: 1.7rem;
    margin: 25px 0 20px;
  }
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.03) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 18px;
  transition: background-color 0.3s ease;
}

.product-card:hover .product-info {
  background-color: rgba(0,0,0,0.01);
}

.product-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.product-card:hover .product-title {
  color: #222;
}

.product-price {
  font-weight: bold;
  color: var(--primary);
  transition: color 0.2s ease;
}

.product-card:hover .product-price {
  color: #222;
}

/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Product Detail Modal */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal.show {
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  max-width: 900px;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transform: translateY(20px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

@keyframes modalFadeIn {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  transform: scale(1);
}

.close-modal:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.1);
}

.product-detail {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-detail {
    flex-direction: row;
  }
}

.product-gallery {
  flex: 1;
  padding: 25px;
  background-color: #fafafa;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
}

.thumbnail-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 10px;
}

.thumbnail {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: var(--transition);
  border-radius: 6px;
}

.thumbnail:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-details {
  flex: 1;
  padding: 25px;
  padding-bottom: 80px;
}

.product-name {
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.product-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.product-price-detail {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #222;
}

.product-description {
  margin-bottom: 25px;
  color: var(--secondary);
}

.shipping-notice {
  background-color: #FF7F7F;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 14px;
  border-left: 4px solid #000000;
  animation: fadeIn 0.5s ease;
}

.option-selector {
  margin-bottom: 25px;
}

.option-title {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.3px;
}

.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-option {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.color-option:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.color-option.selected {
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.color-option.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
  text-shadow: 0 0 2px var(--black);
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-option {
  padding: 8px 14px;
  border: 1px solid #ddd;
  cursor: pointer;
  min-width: 42px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 4px;
  font-size: 14px;
}

.size-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.size-option.selected {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.size-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  transform: none !important;
  box-shadow: none !important;
}

/* Available sizes info */
.available-sizes-info {
  margin-top: 10px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #007bff;
}

.available-sizes-info small {
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

/* Design type options - Premium redesign */
.design-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.design-option {
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  min-width: 42px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.design-option:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #333, #555);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.design-option:hover {
  border-color: #ccc;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.design-option:hover:before {
  opacity: 1;
}

.design-option.selected {
  border-color: var(--primary);
  background: linear-gradient(to bottom, #f5f5f5, #efefef);
  color: var(--primary);
  font-weight: 500;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.design-option.selected:before {
  opacity: 1;
  background: linear-gradient(to right, var(--primary), #555);
}

.design-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  transform: none !important;
  box-shadow: none !important;
}

/* Size Chart Styles */
.size-chart-toggle {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-size: 14px;
  margin-top: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.size-chart-toggle:hover {
  color: #222;
  text-decoration: underline;
}

.size-chart-toggle svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.size-chart-container {
  margin-top: 15px;
  display: none;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.size-chart-container.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.size-chart-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.size-chart-tab {
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.size-chart-tab:hover {
  color: var(--primary);
}

.size-chart-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.size-chart-content {
  display: none;
}

.size-chart-content.active {
  display: block;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.size-table th {
  background-color: #f2f2f2;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
}

.size-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

.size-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.size-table tr:hover {
  background-color: #f5f5f5;
}

.size-chart-note {
  font-size: 12px;
  color: var(--secondary);
  margin-top: 10px;
  font-style: italic;
}

.add-to-cart-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 25px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.add-to-cart-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.add-to-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.add-to-cart-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success);
  color: white;
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1100;
  display: none;
  animation: slideIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transform: translateX(100%);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cart Sidebar */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.show {
  opacity: 1;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
}

.cart-header h2 {
  font-weight: 500;
  font-size: 20px;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--white);
  transform: scale(1);
}

.close-cart:hover {
  background-color: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f5f5f5;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 10px;
}

.empty-cart {
  text-align: center;
  margin-top: 50px;
  color: var(--secondary);
  font-size: 16px;
}

.cart-item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent);
  position: relative;
  transition: transform 0.3s ease;
}

.cart-item:hover {
  transform: translateX(5px);
}

.cart-item-select {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
  transition: transform 0.2s ease;
}

.cart-item-select:hover {
  transform: translateY(-50%) scale(1.1);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-left: 20px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image {
  transform: scale(1.05);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 15px;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.cart-item:hover .cart-item-title {
  color: #222;
}

.cart-item-variant {
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 500;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.quantity-btn {
  width: 26px;
  height: 26px;
  background-color: var(--accent);
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.quantity-btn:hover {
  background-color: #e0e0e0;
  transform: scale(1.1);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 3px;
  font-size: 14px;
}

.remove-item {
  color: var(--secondary);
  font-size: 13px;
  cursor: pointer;
  margin-top: 5px;
  display: inline-block;
  transition: var(--transition);
}

.remove-item:hover {
  color: var(--sale);
  text-decoration: underline;
  transform: translateX(2px);
}

.cart-summary {
  padding: 20px;
  padding-bottom: 80px;
  border-top: 1px solid var(--accent);
  background-color: #fafafa;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}

.cart-actions {
  display: flex;
  gap: 10px;
}

.continue-shopping-btn, .checkout-btn {
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex: 1;
  text-align: center;
  min-height: 48px;
  font-size: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.checkout-btn {
  background-color: var(--primary);
  color: var(--white);
}

.checkout-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.checkout-btn:active {
  transform: translateY(0);
}

.checkout-btn:disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  transform: none !important;
  box-shadow: none !important;
}

.continue-shopping-btn {
  background-color: var(--accent);
  color: var(--primary);
}

.continue-shopping-btn:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.continue-shopping-btn:active {
  transform: translateY(0);
}

/* Checkout Modal */
.checkout-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkout-modal.show {
  opacity: 1;
}

.checkout-content {
  background-color: var(--white);
  max-width: 600px;
  margin: 50px auto;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px;
  padding-bottom: 80px;
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transform: translateY(20px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.checkout-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.checkout-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.shipping-notice-checkout {
  background-color: #FF7F7F;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  border-left: 4px solid #000000;
  animation: fadeIn 0.5s ease;
  color: #000000;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
  animation: fadeIn 0.5s ease;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
  outline: none;
}

.form-select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  background-color: white;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
  outline: none;
}

.phone-input-container {
  display: flex;
  gap: 10px;
}

.phone-code-select {
  width: 120px;
  flex-shrink: 0;
}

.phone-number-input {
  flex: 1;
}

.phone-hint {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  opacity: 0.8;
}

.checkout-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.checkout-submit, .checkout-cancel {
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex: 1;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.checkout-submit {
  background-color: var(--primary);
  color: var(--white);
}

.checkout-submit:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.checkout-submit:active {
  transform: translateY(0);
}

.checkout-cancel {
  background-color: var(--accent);
  color: var(--primary);
}

.checkout-cancel:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.checkout-cancel:active {
  transform: translateY(0);
}

/* Input accessibility */
input, select, textarea {
  font-size: 16px;
}

/* Receipt Modal */
.receipt-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  display: none;
}

.receipt {
  background-color: white;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'Courier New', monospace;
}

.receipt-header {
  text-align: center;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.receipt-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.receipt-info {
  margin-bottom: 15px;
}

.receipt-info div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.receipt-items {
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
  padding: 10px 0;
  margin-bottom: 15px;
}

.receipt-item {
  margin-bottom: 10px;
}

.receipt-item-name {
  font-weight: bold;
}

.receipt-item-details {
  padding-left: 15px;
  font-size: 14px;
}

.receipt-total {
  font-weight: bold;
  text-align: right;
  font-size: 16px;
  margin-bottom: 15px;
}

.receipt-footer {
  text-align: center;
  font-size: 14px;
}

.receipt-close {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
}

.receipt-close:hover {
  background-color: #222;
}

/* PROMO CODE STYLING */
.promo-code-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.promo-code-container input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.validate-promo-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
      min-width: 80px;
}

.validate-promo-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.validate-promo-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.promo-message {
  margin-top: 8px;
  font-size: 13px;
  min-height: 18px;
  font-weight: 500;
}

.promo-message.success {
  color: #28a745;
}

.promo-message.error {
  color: #dc3545;
}

/* CHECKOUT SUMMARY STYLING */
.checkout-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.total-row {
  font-weight: bold;
  font-size: 18px;
  color: #2c3e50;
  border-top: 2px solid #007bff;
  padding-top: 12px;
  margin-top: 12px;
}

.discount-row {
  color: #28a745;
  font-weight: 600;
  background: #d4edda;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 8px -12px;
}

/* RECEIPT BREAKDOWN STYLING */
.receipt-total-breakdown {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid #eee;
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.discount-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #28a745;
  font-weight: 600;
}

.final-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 16px;
  color: #2c3e50;
  border-top: 1px solid #ddd;
  padding-top: 8px;
  margin-top: 8px;
}

/* ====== NIKITA XMR COLLECTION STYLES ====== */
.influencer-container {
  margin-bottom: 50px;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 40px auto;
}

.influencer-header {
  padding: 20px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}

.influencer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
}

.influencer-info {
  flex: 1;
}

.influencer-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.influencer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.influencer-social a {
  color: white;
  transition: transform 0.3s ease;
}

.influencer-social a:hover {
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* ====== FOOTER STYLES ====== */
#motolion-footer * {
  color: #ffffff !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  text-decoration: none !important;
  background: transparent !important;
  box-sizing: border-box !important;
  line-height: 1.5 !important;
}

#motolion-footer a:hover {
  opacity: 0.9 !important;
}

.t-footer, [data-tilda-rule-id], .tilda-footer {
  display: none !important;
}

#motolion-footer {
  --ml-white: #ffffff;
  --ml-black: #000000;
  --ml-gray: rgba(255, 255, 255, 0.7);
  --ml-blue: #0088cc;
  --ml-red: #dc2626;
  --ml-green: #10b981;
  
  background: var(--ml-black) !important;
  padding: 40px 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 100%;
  margin-top: auto;
}

.ml-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ml-brand {
  text-align: center;
  margin-bottom: 30px;
}

.ml-logo {
  height: 40px;
  filter: brightness(0) invert(1) !important;
  margin-bottom: 20px;
}

.ml-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.ml-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ml-social a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-3px);
}

.ml-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0 40px;
  flex-wrap: wrap;
}

.ml-contact-btn {
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.ml-contact-btn .icon-wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-contact-btn.telegram {
  background: transparent !important;
  box-shadow: 0 0 15px rgba(0, 136, 204, 0.5);
}

.ml-contact-btn.telegram:hover {
  box-shadow: 0 0 25px rgba(0, 136, 204, 0.8);
}

.ml-contact-btn.email {
  background: transparent !important;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.ml-contact-btn.email:hover {
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
}

.ml-contact-btn:hover {
  transform: translateY(-3px);
}

.online-status {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--ml-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.2); opacity: 0.7; }
  100% { transform: translateY(-50%) scale(1); opacity: 1; }
}

.ml-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ml-col {
  text-align: center;
}

.ml-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.ml-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ml-links li {
  margin-bottom: 10px;
}

.ml-links a {
  color: var(--ml-gray) !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.ml-links a:hover {
  color: var(--ml-white) !important;
  padding-left: 5px !important;
}

.ml-copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px !important;
  color: var(--ml-gray) !important;
}

.ml-copyright p {
  margin: 5px 0;
}

#ml-tilda-cover {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--ml-black) !important;
  z-index: 99999;
  transition: bottom 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .ml-brand {
    text-align: left;
  }
  
  .ml-social {
    justify-content: flex-start;
  }
  
  .ml-col {
    text-align: left;
  }
  
  .ml-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .ml-contact-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .ml-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .ml-contact-btn {
    width: 100%;
    justify-content: center;
  }
}