/* ==========================================
   AROS SNICKERI - BASE STYLES
   ========================================== */

/* --- IMPORT GOOGLE FONTS --- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@300;400;700&display=swap");

/* --- CSS VARIABLER --- */
:root {
  --primary-red: #c7081b;
  --hover-red: #a00616;
  --accent-red: #e63946;
  --text-dark: #333;
  --text-gray: #666;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- GENERAL RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  color: var(--text-dark);
  background-color: var(--white);
}

/* =============================
   GLOBAL FORM STYLES
   ============================= */

.form-group input:focus + label,
.form-group textarea:focus + label {
  color: #c7081b;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: "Lato", "Arial", "Helvetica", sans-serif;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #d0d0d0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c7081b;
  box-shadow: 0 0 0 4px rgba(199, 8, 27, 0.08);
  transform: translateY(-1px);
}

/* --- GLOBAL COMPONENTS --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
  border-radius: 2px;
  margin: 0 auto 30px;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
}

/* --- 1. HEADER --- */
.main-header {
  background-color: #fff;
  padding: 25px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* --- 2. NAVIGATION --- */
.navigation {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.navigation a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 0;
  transition: all 0.3s;
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

.navigation a:hover {
  background-color: #c7081b !important;
  color: #ffffff !important;
}

/* --- MOBILE MENU TOGGLE --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* --- MOBILE NAVIGATION --- */
.mobile-navigation {
  display: none;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
}

.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-navigation li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-navigation li:last-child {
  border-bottom: none;
}

.mobile-navigation a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s;
}

.mobile-navigation a:hover {
  background-color: #c7081b;
  color: #fff;
  padding-left: 25px;
}

.mobile-contact {
  padding: 20px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.mobile-contact-link img {
  width: 20px;
  height: 20px;
}

.mobile-contact-link:hover {
  color: #c7081b;
}

/* --- 3. LOGO --- */
.logo-container {
  flex: 0 0 auto;
  text-align: center;
  padding: 0 40px;
}

.logo-container img {
  height: 100px;
  width: auto;
  display: block;
}

/* --- 4. CONTACT INFO --- */
.contact-info {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item img {
  width: 20px;
  height: 20px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #c7081b;
}

/* --- 5. HERO SECTION --- */
.hero-section {
  max-width: 1400px;
  width: 100%;
  height: 500px;
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2.5rem;
  padding: 0 15px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}

.slide-btn:hover {
  background-color: rgba(199, 8, 27, 0.8);
}

.slide-btn.prev {
  left: 10px;
}

.slide-btn.next {
  right: 10px;
}

/* --- 6. INFO SECTION --- */
.info-section {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 50px auto;
  align-items: stretch;
}

.info-section .read-more {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  background: none;
  border: 2px solid var(--primary-red);
  padding: 8px 22px;
  border-radius: 24px;
  transition:
    background 0.3s,
    color 0.3s;
  color: var(--primary-red);
  position: relative;
  z-index: 1;
}

.info-section .read-more:hover {
  color: #fff !important;
  background: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(199, 8, 27, 0.1);
}

.info-section .column {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-section .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-section .icon img {
  width: 80px;
  height: 80px;
}

.info-section h3 {
  min-width: 220px;
  width: 350px;
  max-width: 95vw;
  margin: 0 auto;
  margin-bottom: 15px;
  color: #c7081b;
  font-weight: 700;
}

.info-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  flex-grow: 1;
  font-weight: 300 !important;
}

.info-section a {
  display: inline-block;
  text-decoration: none;
  color: #c7081b;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: color 0.3s;
  margin-top: auto;
}

.info-section a:hover {
  color: #a00616;
}

/* --- PRODUCT SECTION --- */
.product-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- SPECIALTY SECTION --- */
.specialty-section {
  max-width: 1400px;
  margin: -30px auto 0;
  padding: 60px 40px;
  text-align: center;
}

.specialty-section h2 {
  color: #c7081b;
  font-size: 2.5rem;
  font-weight: 700;
}

.specialty-section > p {
  color: #666;
  font-size: 1.2rem;
  font-weight: 400;
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.product-highlight img {
  flex: 0 0 50%;
  width: 50%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.product-info {
  flex: 1;
  text-align: left;
  padding: 40px 50px 40px 0;
}

.product-info h3 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-info p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-info .read-more {
  color: #c7081b;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  display: inline-block;
}

.product-info .read-more:hover {
  color: #a00616;
}

/* --- ABOUT SECTION --- */
.about-section {
  max-width: 1400px;
  margin: 80px auto 60px;
  padding: 60px 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

.client-logos {
  flex: 0 0 45%;
  width: 45%;
  max-width: 500px;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.client-logos:hover {
  opacity: 1;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  color: #c7081b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-text p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text .read-more {
  color: #c7081b;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 10px;
  border: 2px solid #c7081b;
  border-radius: 24px;
  padding: 8px 22px;
  background: none;
  transition:
    background 0.3s,
    color 0.3s,
    border 0.3s;
}

.about-text .read-more:hover {
  color: #fff;
  background: #c7081b;
  border-color: #c7081b;
}

/* --- SHARED SIDEBAR COMPONENT --- */
.sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 2px;
}

.sidebar-nav a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--primary-red); /* Vi använder variabeln från förra steget! */
  font-size: 1rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background-color: #f8f8f8;
  border-left-color: var(--primary-red);
  padding-left: 25px;
}

.sidebar-nav a.active {
  font-weight: 700;
  background-color: #fff8f8;
}

/* --- SCROLL TO TOP BUTTON --- */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1200;
  background: #fff;
  border: 2px solid #c7081b;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
  padding: 10px;
  cursor: pointer;
  display: none;
  transition:
    opacity 0.3s,
    background 0.3s,
    border 0.3s;
  opacity: 0.95;
}
#backToTop:hover {
  background: #fff8f8;
  border-color: #a00616;
  opacity: 1;
}
#backToTop img {
  width: 28px;
  height: 28px;
  pointer-events: none;
}

/* Gemensam responsivitet för Sidebar (Tablet Portrait) */
@media screen and (max-width: 900px) {
  .sidebar {
    position: relative;
    width: 100%;
    top: 0;
    margin-bottom: 30px;
  }

  .sidebar-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
  }

  .sidebar-nav a {
    border-left: none;
    border-bottom: 3px solid transparent;
    text-align: center;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a.active {
    padding-left: 15px;
    border-bottom-color: var(--primary-red);
  }
}

/* --- 7. FOOTER --- */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  padding: 40px 0 0;
  margin-top: 60px;
  color: #fff;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c7081b 0%, #e63946 50%, #c7081b 100%);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
}

footer h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

footer h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #c7081b;
  border-radius: 2px;
}

footer h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

footer p {
  color: #b8b8b8;
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  padding: 6px 0;
  transition: transform 0.2s ease;
}

.footer-contact:hover {
  transform: translateX(5px);
}

.footer-contact img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-contact a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #c7081b;
}

/* Footer Navigation */
.footer-nav {
  flex: unset;
  display: block;
  justify-content: unset;
  margin-top: 0;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.footer-nav li {
  margin-bottom: 0;
  position: relative;
  padding-left: 18px;
}

.footer-nav li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c7081b;
  font-size: 1rem;
}

.footer-nav a {
  color: #d0d0d0;
  font-weight: 400;
  font-size: 0.95rem;
  text-transform: none;
  padding: 6px 0;
  border-radius: 0;
  background: none;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
  line-height: 1.7;
}

.footer-nav a:hover {
  background: none !important;
  color: #fff !important;
  text-decoration: none;
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.3px;
}

/* --- 8. BACK TO TOP BUTTON --- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #c7081b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

#backToTop:hover {
  background-color: #a00616;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#backToTop.show {
  display: flex !important;
}

/* --- 9. RESPONSIVE DESIGN --- */

/* Large Desktop */
@media screen and (max-width: 1400px) {
  .header-wrapper,
  .info-section,
  .specialty-section,
  .about-section,
  .footer-content,
  .hero-section,
  .product-section {
    max-width: calc(100% - 40px);
  }
}

/* Large Tablets */
@media screen and (max-width: 1200px) {
  .header-wrapper {
    padding: 0 30px;
  }

  .specialty-section {
    max-width: 95%;
  }

  .about-section {
    max-width: 95%;
  }
}

/* Tablets */
@media screen and (max-width: 1024px) {
  .header-wrapper {
    padding: 0 20px;
  }

  .logo-container {
    padding: 0 30px;
  }

  .logo-container img {
    height: 90px;
  }

  .navigation a {
    font-size: 1.1rem;
    padding: 10px 15px;
  }

  .info-section {
    padding: 40px 20px;
  }

  .specialty-section {
    padding: 50px 30px;
  }

  .product-highlight {
    gap: 40px;
  }

  .product-highlight img {
    height: 400px;
  }

  .product-info {
    padding: 30px 40px 30px 0;
  }

  .about-section {
    padding: 50px 30px;
    gap: 50px;
  }

  .client-logos {
    max-width: 400px;
  }
}

/* Tablet Portrait */
@media screen and (max-width: 900px) {
  .navigation a {
    font-size: 1rem;
    padding: 10px 12px;
  }

  .logo-container {
    padding: 0 20px;
  }

  .specialty-section {
    padding: 40px 20px;
    margin: 60px auto 0;
  }

  .specialty-section h2 {
    font-size: 2rem;
  }

  .specialty-section > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .product-highlight {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  .product-highlight img {
    flex: none;
    width: 100%;
    height: 350px;
    border-radius: 8px 8px 0 0;
  }

  .product-info {
    padding: 30px;
    text-align: center;
  }

  .product-info h3 {
    font-size: 1.6rem;
  }

  .about-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    margin: 60px auto 40px;
  }

  .client-logos {
    flex: none;
    width: 100%;
    max-width: 450px;
  }

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

  .about-text h2 {
    font-size: 2rem;
  }
}

/* Mobile */
@media screen and (max-width: 820px) {
  /* Header */
  .main-header {
    padding: 15px 0;
  }

  .header-wrapper {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navigation {
    display: none;
  }

  .logo-container {
    flex: 1;
    text-align: center;
    padding: 0;
    order: 1;
  }

  .logo-container img {
    height: 70px;
  }

  .contact-info {
    width: 100%;
    order: 2;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item img {
    width: 18px;
    height: 18px;
  }

  /* Hero Section */
  .hero-section,
  .slideshow-container {
    height: 300px;
    margin: 15px auto 0;
  }

  .slide-btn {
    font-size: 2rem;
    padding: 0 12px;
  }

  /* Info Section */
  .info-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 15px;
  }

  .info-section h3 {
    font-size: 1.3rem;
    width: auto;
  }

  /* Product Section */
  .product-section {
    padding: 0 20px;
  }

  .specialty-section {
    padding: 30px 15px;
    margin: 40px auto 0;
  }

  .specialty-section h2 {
    font-size: 1.8rem;
  }

  .specialty-section > p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .product-highlight img {
    height: 300px;
  }

  .product-info {
    padding: 25px 20px;
  }

  .product-info h3 {
    font-size: 1.5rem;
  }

  .product-info p {
    font-size: 1rem;
  }

  .about-section {
    padding: 35px 15px;
  }

  .client-logos {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 40px;
  }

  footer h2 {
    font-size: 1.5rem;
  }

  footer h3 {
    margin-top: 25px;
    font-size: 1rem;
  }

  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .header-wrapper {
    padding: 0 10px;
  }

  .logo-container img {
    height: 60px;
  }

  .contact-info {
    font-size: 0.85rem;
    gap: 10px;
  }

  .contact-item img {
    width: 16px;
    height: 16px;
  }

  .hero-section,
  .slideshow-container {
    height: 250px;
    margin: 10px auto 0;
  }

  .slide-btn {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .info-section {
    padding: 30px 15px;
  }

  .info-section h3 {
    font-size: 1.2rem;
  }

  .info-section p {
    font-size: 0.95rem;
  }

  .specialty-section {
    padding: 25px 15px;
    margin: 30px auto 0;
  }

  .specialty-section h2 {
    font-size: 1.6rem;
  }

  .specialty-section > p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .product-highlight img {
    height: 250px;
  }

  .product-info {
    padding: 20px 15px;
  }

  .product-info h3 {
    font-size: 1.3rem;
  }

  .product-info p {
    font-size: 0.95rem;
  }

  .about-section {
    padding: 30px 15px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  footer {
    margin-top: 40px;
  }

  .footer-content {
    padding: 0 15px 30px;
  }

  footer h2 {
    font-size: 1.4rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .logo-container img {
    height: 55px;
  }

  .contact-info {
    font-size: 0.8rem;
  }

  .hero-section,
  .slideshow-container {
    height: 220px;
  }

  .slide-btn {
    font-size: 1.5rem;
    padding: 0 10px;
  }

  .specialty-section h2 {
    font-size: 1.4rem;
  }

  .product-highlight img {
    height: 220px;
  }

  .product-info h3 {
    font-size: 1.2rem;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .info-section h3 {
    font-size: 1.1rem;
  }
}
