/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #95a5a6;
    --success-color: #2ecc71;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    color: var(--dark-color);
    margin-left: 20px;
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
}

.nav-icons a:hover {
    color: var(--primary-color);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

#menu-btn {
    display: none;
}

/* Search Bar */
.search-container {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--box-shadow);
    z-index: 999;
    transition: var(--transition);
    padding: 15px 0;
}

.search-container.active {
    top: 80px;
}

.search-container .container {
    display: flex;
    align-items: center;
}

#search-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

#search-input:focus {
    border-color: var(--primary-color);
}

#search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    margin-left: 15px;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

#search-close:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://iili.io/FaY5Spt.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.hero-buttons .btn {
    margin: 0 10px;
}


@media (max-width: 768px) {
    .hero {
        height: auto; /* Allow it to shrink based on content */
        padding: 60px 20px; /* Add spacing around content */
        margin-top: 70px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        max-width: 220px;
        margin: 10px auto;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Mobile Optimization - Shrink Header & Nav */
@media (max-width: 768px) {
    header {
        padding: 8px 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo p {
        font-size: 0.6rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
        margin-left: 0;
    }

    .nav-links li {
        margin-left: 10px;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 5px;
    }

    .nav-icons a {
        font-size: 1rem;
        margin-left: 10px;
    }

    #cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        top: -6px;
        right: -6px;
    }

    #menu-btn {
        display: none !important; /* Ensure it stays hidden */
    }

    .container {
        padding: 0 10px;
    }
}



/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
}


@media (max-width: 768px) {
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 20px 10px 30px 10px;
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .service-card {
    flex: 0 0 auto;
    min-width: 220px;
    max-width: 280px;
    height: 320px;
    margin: 0 5px;
    scroll-snap-align: start;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #009688;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #333;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.4;
  }

  .scroll-fade-wrapper {
    position: relative;
  }

  .fade-left,
  .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }

  .fade-left {
    left: 0;
    background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
  }

  .fade-right {
    right: 0;
    background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
  }

  html {
    scroll-behavior: smooth;
  }
}


/* Products Section */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.products-grid {
  display: flex;
  flex-direction: row; /* Horizontal layout */
  overflow-x: auto; /* Enables horizontal scroll */
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  white-space: nowrap;
  scroll-snap-type: x mandatory; /* 👈 Add this */
}
.products-grid::-webkit-scrollbar {
  display: none;
}


.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
	flex: 0 0 auto;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9; /* Optional: subtle background */
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.product-img img {
    padding: 0px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}


.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: #2980b9;
}

.out-of-stock {
    background-color: var(--gray-color);
    cursor: not-allowed;
}

/* Extra small devices (phones, < 480px) */
@media (max-width: 480px) {
  .product-card {
    width: 80vw;           /* slightly narrower */
    min-width: 200px;      /* prevents it from going too small */
    max-width: 200px;      /* limits overly wide cards on wider small screens */
    margin: 0 auto;        /* center the cards */
    box-sizing: border-box;
  }

  .product-img {
    height: 100px;
    object-fit: contain;
  }
  
  
  .product-info p {
  font-size: 0.8rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
  margin: 5px 0;
  white-space: normal;      /* ⬅️ Allows wrapping */
}


  .product-info h3 {
    font-size: 0.9rem;
  }

  .product-info p {
    font-size: 0.8rem;
  }
  
  .price {
    font-size: 0.8rem;
  }

  .add-to-cart {
    padding: 8px 10px;
    font-size: 0.8rem;
  }
}

.product-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: nowrap;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.product-search input {
  padding: 10px 19px;
  width: 200px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

.product-search input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.product-search button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s ease;
}

.product-search button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}


@media (max-width: 480px) {
  .product-search {
    padding: 1px 12px;
    gap: 6px;                      /* Less space between input and button */
    max-width: 100%;
    margin: 10px auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
  }

  .product-search input {
    width: 160px;                 /* Shrink input field */
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .product-search button {
    padding: 10px 12px;
    font-size: 0.9rem;
    gap: 4px;
    box-shadow: none;
  }
}

.products-heading {
  margin-top: -100px;               /* Distance from top */
  margin-bottom: 20px;            /* Space below the heading */
  padding: 0 20px;                /* Optional horizontal padding */
  font-size: 2rem;                /* Customize heading size */
  font-weight: 700;
  text-align: center;             /* Center or change to 'left' if needed */
  color: #222;                    /* Or use var(--text-color) */
  letter-spacing: 0.5px;
  line-height: 0.3;
}

/* Repair Process */
.repair-process {
    padding: 60px 0;
    background-color: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.step {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}
.step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: 0.5;
}
.step:last-child::before {
    display: none;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}
.step h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}


/* Brands */
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
}

.brand-logos img {
    height: 50px;
    max-width: 120px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


@media (max-width: 600px) {
  .brand-logos {
    gap: 16px;
    padding: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .brand-logos img {
    height: 40px;
    max-width: 80px;
    flex: 1 1 calc(33.33% - 16px); /* 3 logos per row with gap */
    margin: 0 auto;
  }
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    margin: 0;
}

#cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

#cart-close:hover {
    color: var(--accent-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 15px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-quantity button {
    background-color: var(--light-color);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity span {
    margin: 0 10px;
}

.remove-item {
    color: var(--accent-color);
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    align-self: flex-start;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.empty-cart {
    text-align: center;
    color: var(--gray-color);
    padding: 40px 0;
}

.cart-breakdown .line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 1rem;
}

.cart-breakdown .total {
  font-size: 1.2rem;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 10px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    /* Disable hamburger menu behavior */
    #menu-btn {
        display: none !important;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        background-color: transparent;
        width: auto;
        height: auto;
        padding-top: 0;
        align-items: center;
        justify-content: flex-start;
		  gap: 5px;
    }

    .nav-links li {
        margin: 0 1px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .nav-icons a {
        font-size: 1rem;
        margin-left: 10px;
    }

    .container {
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-controls {
        justify-content: flex-start;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* Quick Contact */
.quick-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.quick-btn:hover {
    transform: translateY(-5px);
}

.quick-btn.phone {
    background: var(--primary-color);
}

.quick-btn.whatsapp {
    background: #25D366;
}


.cart-delivery-options {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
  font-size: 0.95rem;
}

.cart-delivery-options label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

.cart-delivery-options select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}


/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    z-index: 1100;
}

/* Modal Box */
.manual-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    z-index: 1101;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.manual-modal-content h3 {
    margin-top: 0;
}

.manual-modal-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.manual-modal-content button {
    margin-top: 15px;
}
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none;
    z-index: 1100;
}

/* Modal Box */
.manual-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    z-index: 1101;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.manual-modal-content h3 {
    margin-top: 0;
}

.manual-modal-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.manual-modal-content button {
    margin-top: 15px;
}
