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

body {
  font-family: "Kameron", serif;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
}

/* Header styles */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-top-row {
  display: flex;
  /* justify-content: flex-start; */ /* Original, can be kept if first child (logo link) handles expansion */
  align-items: center;
  width: 100%;
  gap: 15px; /* Add gap between direct children: search, logo, toggle */
}

/* Styles for the logo's link in index.html to make it take space and center the logo */
/* Targets the first <a> element in .header-top-row, which is the logo link in index.html */
.header-top-row > a:first-child {
  flex-grow: 1;                  /* Allows the link to expand and fill available space */
  display: flex;
  justify-content: center;       /* Centers the image (logo) within the link */
  line-height: 0;                /* Prevents extra space if image is display: inline or inline-block */
}

/* Search container wrapper - General structure for search within header */
/* Specific sizing and appearance will be in products.css for products-header-variant */
.search-container-wrapper {
  /* order: 1; /* Default order, not strictly needed if first in HTML */
  display: flex; /* Takes up its content's width by default */
  align-items: center;
}

.logo-link-header { /* Class added to <a> tag around logo on other pages, not used in index.html by default */
  /* order: 2; /* Default order, not strictly needed if second in HTML */
  line-height: 0; /* Prevent extra space below image if it's display: inline */
  flex-shrink: 0;
}

.main-header .logo {
  width: 160px; /* Slightly smaller for better balance with search */
  height: auto;
  display: block; /* Good for images in links */
  margin-right: 35px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  margin-left: auto; /* Pushes toggle to the far right */
  z-index: 999; /* Changed from 1100 */
  flex-shrink: 0;
}

.menu-icon {
  font-size: 28px;
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: none;
  background-color: #fff;
  transform: translateX(100%);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px;
  gap: 15px;
}

.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.close-icon {
  font-size: 28px;
  color: #000;
}

.menu-link {
  font-family: "Kameron", sans-serif;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.menu-link:hover {
  color: #2890e6;
}

.desktop-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  width: 100%;
  margin-top: 15px; /* Space between top row and nav */
}

.nav-link {
  font-family: "Kameron", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2890e6;
}

/* Hero section (styles remain the same) */
.hero-section {
  width: 100%;
  height: 560px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px;
  box-sizing: border-box;
  text-align: left;
}

.hero-title {
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 8px;
  color: #fff;
  font-family: "Kameron", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: normal;
}

/* Product carousel (styles remain the same) */
.product-carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* max-width: 1440px; */ /* REMOVED for full width */
  margin: 20px 0; /* REMOVED auto margin for full width */
  padding: 0 20px;
  box-sizing: border-box;
}

.product-carousel-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  /* max-width: 1440px; */ /* REMOVED for full width */
  /* margin: 0 auto; */ /* REMOVED for full width */
}

.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.product-item {
  flex: 0 0 auto;
  width: 200px;
  margin-right: 15px;
  margin-top: 15px;
  text-align: center;
  box-sizing: border-box;
}

.product-item:last-child {
  margin-right: 0;
}

.product-image {
  width: 150px;
  height: 250px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
  max-height: 150px;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Sponsors section */
.sponsors-section {
  width: 100%;
  margin: 30px 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 12px;
}

.sponsors-header h2 {
  font-family: "Kameron", sans-serif;
  font-weight: 400;
  font-size: 28px;
}

.sponsors-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sponsors-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.sponsor-card {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0; /* allow image to fill */
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sponsor-image {
  width: 15%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(10%);
}

/* Gradient overlay and text content for sponsor cards */
.sponsor-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(107, 114, 128, 0.85) 0%, rgba(107, 114, 128, 0.0) 70%);
  pointer-events: none;
}

.sponsor-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #fff;
  font-family: "Kameron", sans-serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.sponsor-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.sponsor-desc {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}

.sponsors-arrow {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sponsors-arrow.prev { left: 8px; }
.sponsors-arrow.next { right: 8px; }

.sponsors-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 0;
}

.sponsor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
}

.sponsor-dot.active {
  background: #888;
}

@media (max-width: 640px) {
  .sponsor-card { min-height: 160px; }
  .sponsor-title { font-size: 18px; }
  .sponsor-desc { font-size: 13px; }
}

/* Brand showcase (styles remain the same) */
.brand-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  /* max-width: 1200px; */ /* REMOVED for full width */
  margin: 30px 0; /* REMOVED auto margin for full width */
  padding: 0 15px;
}

.brand-link {
  display: block;
  text-decoration: none;
  flex-basis: calc(25% - 15px);
  min-width: 120px;
}

.brand-button {
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.brand-button:hover {
  transform: scale(1.03);
  border-color: #bbb;
}

.brand-image, .brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vintage-label {
  width: 100%;
  height: 100%;
  color: #000;
  font-family: Athelas, serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Vintage Highlight Section (styles remain the same) */
.vintage-highlight-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  margin: 40px 0; /* REMOVED auto margin for full width */
  /* max-width: 1440px; */ /* REMOVED for full width */
}

.vintage-highlight-section {
  position: relative; /* Establishes a positioning context for the pseudo-element */
  z-index: 1; /* Ensures content stays above the new background layer */
  overflow: hidden; /* Keeps the background within the section's bounds */
}

.vintage-highlight-section::before {
  content: ''; /* Required for pseudo-elements to be generated */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; /* Places the pseudo-element behind the section's content */

  /* Set the background image to the Bosnian flag */
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/bf/Flag_of_Bosnia_and_Herzegovina.svg/2560px-Flag_of_Bosnia_and_Herzegovina.svg.png');
  background-size: cover;
  background-position: center;

  /* Set the opacity of the background image */
  opacity: 0.1;
}


.vintage-highlight-content h2 {
  font-size: 36px;
  font-family: "Kameron", serif;
  color: #333;
  margin-bottom: 15px;
}

.vintage-highlight-content p {
  font-size: 26px;
  font-family: "Kameron", serif;
  color: #303030;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

.vintage-cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: "Kameron", sans-serif;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.vintage-cta-button:hover {
  background-color: #333;
}

/* Omega collection (styles remain the same) */
.omega-collection {
  /* max-width: 1440px; */ /* REMOVED for full width */
  margin: 40px 0; /* REMOVED auto margin for full width */
  position: relative;
  width: 100%;
  min-height: 400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 20px;
}

/* Add this to styles.css */
.collection-content .collection-description {
  font-family: "Kameron", serif;
  font-size: 18px;
  color: #555; /* A slightly softer color */
  max-width: 380px; /* Constrain the width for readability */
  line-height: 1.5;
  margin-top: -5px; /* Adjust spacing to be closer to the button */
}

.collection-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  z-index: 2;
  flex-basis: 45%;
  min-width: 280px;
  margin-right: 999px;
  text-decoration: none;
}

.collection-button {
  width: auto;
  max-width: 316px;
  border-radius: 30px;
  border: 2px solid #00603a;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Kameron", sans-serif;
  font-size: 22px;
  color: #00603a;
  padding: 12px 24px;
  text-align: center;
  background-color: #fff;
  margin-top: 10px;
  text-decoration: none;
}

.collection-button:hover {
  background: #00603a;
  color: #fff;
  transform: scale(1.05);
}

.watch-display {
  width: 400px;
  max-width: 45%;
  height: auto;
  z-index: 1;
  margin: 10px;
}

.omega-watch {
  width: 100%;
  height: 120%;
  object-fit: contain;
}

.background-element {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: auto;
  z-index: 0;
}

.background-image {
  width: 100%;
  height: auto;
}

/* Box collection (styles remain the same) */
.box-collection {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* max-width: 1440px; */ /* REMOVED for full width */
  margin: 40px 0; /* REMOVED auto margin for full width */
  min-height: 450px;
  height: auto;
  max-height: 60vh;
  overflow: hidden;
  background-color: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.collection-image-wrapper {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.collection-info {
  width: 50%;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.collection-title {
  font-family: "Kameron", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  color: #000;
  margin-bottom: 30px;
  font-weight: normal;
  line-height: 1.3;
}

.collection-cta {
  width: auto;
  max-width: 400px;
  padding: 15px 30px;
  height: auto;
  border-radius: 50px;
  border: 2px solid #000;
  font-family: "Kameron", sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

.collection-cta:hover {
  background: #000;
  color: #fff;
  transform: scale(1.02);
}

/* === VICTORINOX SECTION STYLES === */
.victorinox-section {
  /* Koristimo RGBA za crvenu boju sa 0.2 providnosti */
  background-color: rgba(204, 0, 0, 0.2); 
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.victorinox-logo {
  width: 375px;
  height: auto;
  margin-bottom: 25px;
}

.victorinox-description {
  font-family: "Kameron", serif;
  font-size: 20px;
  color: #222; /* Tamna boja za bolju čitljivost na svijetlo crvenoj pozadini */
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.victorinox-button {
  border-color: #c6001f; /* Victorinox crvena boja */
  color: #c6001f;
  background-color: #fff; /* Bijela pozadina */
}

.victorinox-button:hover {
  background-color: #c6001f;
  color: #fff;
}

/* Footer styles (styles remain the same) */
.site-footer {
  background-color: #222;
  color: #ccc;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.footer-container {
  /* max-width: 1200px; */ /* REMOVED for full width */
  /* margin: 0 auto; */ /* REMOVED for full width */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px; /* Added padding to keep content from touching edges */
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-family: "Kameron", serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
}

.footer-column p,
.footer-column address {
  margin-bottom: 10px;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-about p {
  font-style: italic;
  color: #bbb;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  color: #aaa;
  font-size: 75px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.1);
}

.social-icon i {
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #888;
}


/* Responsive styles */
@media (max-width: 991px) { /* Tablet */
  .main-header {
    padding: 10px 15px; /* Adjust header padding for tablet */
  }
  .header-top-row {
    gap: 10px; /* Reduce gap for tablet */
    margin-bottom: 10px; /* Space before nav if it wraps */
  }
  .main-header .logo {
    width: 140px; /* Smaller logo for tablet */
  }
  /* Search wrapper styling is primarily in products.css, but ensure it behaves with less space */
  .search-container-wrapper {
    /* flex-grow: 1; Could allow it to grow if there's space next to logo */
    /* max-width: 300px; /* Limit width */
  }
  .desktop-menu {
    margin-top: 10px; /* Adjust space if header items wrap */
    gap: 20px;
  }
  .nav-link {
    font-size: 18px;
  }

  .brand-link {
    flex-basis: calc(33.333% - 15px);
    min-width: 140px;
  }

  .omega-collection {
    padding: 15px;
    align-items: center;
    text-align: center;
  }
  
  .collection-content {
      margin-right: 0;
  }
  
  .watch-display {
    width: 280px;
    max-width: 100%;
    margin-top: 20px;
  }
  .background-element {
    display: none;
  }
  .collection-button {
    margin: 20px auto 0;
  }

  .box-collection {
    flex-direction: column;
    max-height: none;
    height: auto;
  }
  .collection-image-wrapper,
  .collection-info {
    width: 100%;
  }
  .collection-image-wrapper {
    height: 300px;
  }

  .footer-column {
    min-width: calc(50% - 15px);
    text-align: left;
  }
  .footer-column.footer-social, .footer-column.footer-about {
      min-width: 100%;
  }
  .social-icons {
    justify-content: flex-start;
  }
}


@media (max-width: 767px) { /* Mobile - Header specific changes */
  .main-header {
    /* padding: 10px 15px; Already set for tablet, fine for mobile */
  }
  .header-top-row {
    flex-wrap: wrap; /* Allow items to wrap: search, then logo, then toggle if needed */
    justify-content: center; /* Center items when they wrap */
    gap: 10px;
    margin-bottom: 0; /* Nav will be hidden (mobile menu shown) */
  }

  .search-container-wrapper { /* This rule is general, products.css may specialize it */
    order: 1; /* Search first if present */
    width: 100%; /* Full width for search if present */
    margin-bottom: 10px; /* Space below search if logo/toggle wrap under */
    padding: 0; /* Remove side padding if full width */
  }

  /* Targeting the logo link specifically for mobile wrapping in index.html */
  .header-top-row > a:first-child {
    order: 2; /* Logo second after search (if search was present) */
    /* margin: 0 auto; /* Center logo link if it's on its own line and not flex-growing */
    /* flex-grow: 0; /* Prevent growing if it needs to be centered with margin auto */
    /* The justify-content: center on header-top-row will handle centering of items */
  }
  .main-header .logo { /* Styles for the image itself */
    width: 130px; /* Even smaller logo */
    margin: 0 auto; /* This helps ensure the image itself is centered if its container doesn't do it */
  }

  .menu-toggle {
    order: 3; /* Menu toggle last */
    display: flex;
    margin-left: 0; /* Reset margin as it might be centered or part of wrap flow */
    /* If header-top-row is centered, toggle will be part of that centered block */
    /* For top-right absolute positioning of toggle, relative to .main-header: */
    position: absolute;
    top: 18px; /* Adjust based on overall header padding and logo size */
    right: 15px;
  }

  .mobile-menu {
    display: block; /* JS controls translateX for open/close */
  }
  .desktop-menu {
    display: none;
  }
}


@media (max-width: 640px) { /* General Mobile */
  /* NEW: Rule to make hero video narrower on mobile */
  .hero-section {
    height: 400px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-right: 0; /* Reset large margin for smaller screens */
  }
  .hero-overlay {
    padding: 20px;
  }

  .product-carousel {
    padding: 0 10px;
  }

  .carousel-arrow {
    display: none;
  }

  .product-item {
    width: 160px;
  }
  .product-image {
      width: 120px;
      height: 250px;
      max-height: 150px;
  }

  .brand-link {
    flex-basis: calc(50% - 10px);
    min-width: 120px;
  }
  .brand-button {
    height: 120px;
  }
  .vintage-label {
    font-size: 20px;
  }

  .vintage-highlight-content h2 {
    font-size: 28px;
  }
  .vintage-highlight-content p {
    font-size: 16px;
  }
  .vintage-cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .omega-collection {
    max-width: 100%;
    padding: 15px;
  }
  .collection-content {
      width: 100%;
      align-items: center;
  }
  .collection-button {
    width: 80%;
    font-size: 18px;
  }
  .watch-display {
      width: 60%;
      max-width: 250px;
  }


  .box-collection {
    margin: 20px 0;
  }
  .collection-image-wrapper {
    height: 250px;
  }
  .collection-info {
      padding: 20px;
  }
  .collection-title {
    font-size: 24px;
  }
  .collection-cta {
    width: 80%;
    font-size: 18px;
    padding: 12px 20px;
  }

  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .site-footer {
      font-size: 13px;
  }
  .social-icon {
      font-size: 22px;
  }
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

/* Skip to content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #000;
  color: white;
  padding: 10px 15px;
  z-index: 2000;
  transition: top 0.3s ease-in-out;
  border-radius: 0 0 5px 0;
}

.skip-link:focus {
  top: 0;
}

.collection-link {
  text-decoration: none;
}

/* === Add to Home Screen Notification === */
.a2hs-notification {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    color: #333;
    padding: 16px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
    transform: translateY(100%); /* Start off-screen */
}

.a2hs-notification.show {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.a2hs-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.a2hs-logo {
    width: 10%;
    height: 10%;
    margin-right: 20px;
    border-radius: 8px;
}

.a2hs-text {
    flex-grow: 1;
}

.a2hs-title {
    font-weight: 700;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.a2hs-instructions {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.a2hs-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

/* Animation to slide the notification up */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

