/* 
   Asya Market Corporate Design System
   Modern, Clean, Responsive, Professional
*/

:root {
  /* Brand Colors */
  --primary: #ed1c24;
  /* Corporate Red */
  --primary-dark: #b91c22;
  /* Darker Red for hover */
  --secondary: #0f172a;
  /* Dark Navy/Black */

  /* Backgrounds */
  --bg: #f8fafc;
  /* Light Grey for page bg */
  --surface: #ffffff;
  /* Pure White for cards */
  --surface-alt: #f1f5f9;
  /* Slight grey for sections */

  /* Text */
  --text: #334155;
  /* Dark Grey for body */
  --text-heading: #0f172a;
  /* Almost Black for headings */
  --text-light: #64748b;
  /* Muted text */
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border: #e2e8f0;
  --radius: 12px;
  /* Slightly tighter radius for corporate feel */
  --radius-sm: 6px;

  /* Modern Shadows - High Quality */
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Layout */
  --container: 1200px;
  /* Slightly narrower for readability */
  --header-height: 80px;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Prevent horizontal scroll from off-canvas menu */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  /*padding: 0 2rem;*/
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
    /* Ensure padding on mobile */
  }
}

.section {
  padding: 5rem 0;
}

.bg-white {
  background-color: var(--surface);
}

.bg-alt {
  background-color: var(--surface-alt);
}

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

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

.text-muted {
  color: var(--text-light);
  font-size: 0.95rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Global Mobile Padding Fix */
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .grid-cols-4,
  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .flex-col {
    flex-direction: column !important;
  }

  /* Hero specific mobile fix */
  .hero .flex {
    flex-direction: column !important;
    text-align: center;
  }

  .hero .flex>div {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }

  .mobile-hidden {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 0.95rem;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: white;
  color: var(--text-heading);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-light);
  background-color: var(--surface-alt);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  height: var(--header-height);
  background: var(--secondary);
  /* Dark Background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle border */
  position: sticky;
  top: 0;
  z-index: 1100;
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  /* White text for dark bg */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--primary);
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  /* White with slight opacity */
  position: relative;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  /* Red on hover */
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text);
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: var(--surface-alt);
  color: var(--primary);
}

/* Mobile Menu (Slide-in) */
/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  /* White on dark header */
  z-index: 1100;
}
.mobile-menu-header {
  display: none;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background: var(--secondary);
  /* Dark Menu Background */
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  /* Override desktop gap */
  padding: 0;
  /* Remove padding, handled by children */
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1200;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.47rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.mobile-menu-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.5rem;
  transition: color 0.3s;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

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

  .mobile-menu-btn {
    display: block;
  }

  /* Dropdown Container in Mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none;
    padding: 0;
    width: 100%;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
    transition: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item {
    padding: 1rem 1.5rem 1rem 3rem;
    /* Indentation + Click Area */
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    /* Clear text color */
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Main Nav Links in Mobile */
  .nav-link {
  font-size: 1rem;
  /* Slightly smaller */
  padding: 0.85rem 1.5rem;
  /* Reduced padding */
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  /* White text */
}

  /* Kurumsal Link Specifics */
.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-toggle::after {
  /* Optional: custom arrow rotation */
  transition: transform 0.3s;
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-link:last-child {
  border-bottom: none;
}

/* Button in menu */
.nav-links .btn {
  margin: 1.5rem 1.5rem;
  width: calc(100% - 3rem);
}
}

/* Cards & Components */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(237, 28, 36, 0.2);
}

/* Category Cards - Professional */
.category-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.category-icon {
  font-size: 3rem;
  color: var(--text-light);
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.category-card:hover .category-icon {
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 6rem 0;
  background: white;
  border-bottom: 1px solid var(--border);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--secondary);
  letter-spacing: -0.04em;
}

/* Promo Stats */
.stats-bar {
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--text-heading);
  padding: 2rem 0;
}

.stat-value {
  color: var(--primary);
}

.stat-item {
  color: var(--text-heading);
}

/* Form Elements */
/* Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: var(--transition);
  display: block;
  width: 100%;
  min-height: 45px;
  /* Standardize height */
  scroll-margin-top: 120px;
}

input[type="file"].form-control {
  padding: 0.5rem 1rem;
  /* Adjust padding for file input */
  line-height: normal;
  /* Fix vertical alignment */
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: .5rem 1.2rem;
  cursor: pointer;
  font-size: 2rem;
  /*border-radius: 50%;*/
  transition: 0.2s;
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--text-light);
  /* Start muted */
  border-top: none;
}

.footer-title {
  color: white;
}

.footer-brand p {
  color: #94a3b8;
}

.footer-link {
  color: #94a3b8;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  color: #64748b;
}

/* Breadcrumb */
.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--primary);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1.5rem 1rem 0.5rem;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Contact & Map Updates */
.full-width-map {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Detailed Form Styles */
.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Branch Page Styles - Interactive Map Look */
.branches-container {
  display: flex;
  gap: 2rem;
  height: 600px;
}

.branches-map-main {
  flex: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: var(--header-height);
}

.branches-map-main iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.branches-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.branch-card-sm {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
}

.branch-card-sm:hover,
.branch-card-sm.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background-color: #fff5f5;
}

.branch-card-sm h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.branch-card-sm p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Scrollbar for branch list */
.branches-list::-webkit-scrollbar {
  width: 6px;
}

.branches-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.branches-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.branches-list::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

@media (max-width: 900px) {
  .branches-container {
    flex-direction: column;
    height: auto;
  }

  .branches-map-main {
    height: 300px;
    position: static;
    scroll-margin-top: 100px;
    /* Account for navbar */
    flex: none;
  }

  .branches-list {
    max-height: none;
    overflow-y: visible;
  }
}

/* Brand Descriptions */
.brand-card {
  background: white;
  border-radius: 1.5rem;
  padding: 0;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-color: rgba(237, 28, 36, 0.2);
}

.brand-logo-bg {
  background: #f8fafc;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.4s ease;
}

.brand-card:hover .brand-logo-bg {
  background: #fff5f5;
}

.brand-card img {
  height: 110px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(100%) opacity(0.8);
}

.brand-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) opacity(1);
}

.brand-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.brand-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.brand-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-action svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-action {
  opacity: 1;
  color: var(--primary-dark);
}

.brand-card:hover .brand-action svg {
  transform: translateX(5px);
}

/* End of Brand Descriptions */

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {

  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Floating Action Buttons */
.floating-btn {
  position: fixed;
  bottom: 20px;
  z-index: 1090;
  /* Below Navbar(1100) but above content */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

/* WhatsApp Button */
.floating-whatsapp {
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  color: white;
  font-size: 32px;
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* Online Market Alert Button */
.floating-market-alert {
  right: 20px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  padding: 12px 24px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
  animation: pulse-soft 2s infinite;
  gap: 8px;
}

.floating-market-alert svg {
  width: 20px;
  height: 20px;
  fill: white;
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 75, 43, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0);
  }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .floating-market-alert {
    padding: 13px 15px;
    font-size: 0.85rem;
    bottom: 15px;
    right: 15px;
  }

  .footer {
    padding-bottom: 80px !important;
    /* Ensure ample space for buttons above content */
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--border);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mobile-app-buttons{
  display: flex;
  gap: 1rem;
}

@media (max-width: 600px) {
  .mobile-app-buttons{
    display: block;
    gap: 1rem;
  }
  .mobile-app-buttons a{
    width: 100%;
    margin-top: 10px;
  }
}