*{box-sizing:border-box;font-family: Arial, sans-serif}
.container{max-width:1100px;margin:0 auto;padding:10px}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    background:#fff;border-bottom:1px solid #eee;padding:10px 0
}
.site-header .container{display:flex;align-items:center;justify-content:space-between}
.main-nav a{margin:0 8px;text-decoration:none;color:#333}
body {
    padding-top: 60px; /* Adjust according to your header height so content doesn’t jump */
}
.cart-button{background:#333;color:#fff;padding:8px 12px;border-radius:6px;text-decoration:none}
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:20px}
.product-card{border:1px solid #eee;padding:10px;border-radius:6px}
.product-card img{width:100%;height:160px;object-fit:cover}
.card-actions{display:flex;gap:8px;margin-top:8px}
.add-to-cart{padding:8px 10px;border:0;background:#0a74da;color:#fff;border-radius:6px}
.view-btn{padding:8px 10px;border:1px solid #0a74da;color:#0a74da;border-radius:6px;text-decoration:none}


/* for mobile/special category horizontal scroll example */
.products-row{display:flex;overflow-x:auto;gap:10px;padding-bottom:10px}
.products-row .product-card{min-width:260px;flex:0 0 auto}


@media (max-width:900px){
.products-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:500px){
.products-grid{grid-template-columns:1fr}
}
/* Home container and category title */
.home-container {
    padding: 20px;
}

.category-title {
    margin: 20px 0 10px;
    font-size: 1.5em;
    font-weight: bold;
}

/* Category wrapper for scroll buttons */
.category-wrapper {
    position: relative;
    margin-bottom: 30px;
}

/* Products horizontal scroll */
.products-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    min-width: max-content;
}

.products-scroll {
    display: flex;
    gap: 20px;
}

/* Product card */
.product-card {
    flex: 0 0 22%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.product-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1em;
}

.product-card .price {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-card .desc {
    font-size: 0.9em;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

/* Buttons */
.product-card .buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.product-card .cart-btn, .product-card .view-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    text-decoration: none;
    color: #fff;
}

.product-card .add-cart { background: #28a745; }
.product-card .remove-cart { background: #dc3545; }
.product-card .view-btn { background: #0073e6; }

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2em;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
}

.left-btn { left: 0; }
.right-btn { right: 0; }

.scroll-btn:hover { background: rgba(0,0,0,0.7); }

/* Badge for active/featured etc */
.badge {
    padding: 3px 6px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
}
.badge.active { background: #28a745; }
.badge.inactive { background: #dc3545; }
.badge.featured { background: #0073e6; }

/* Responsive */
@media(max-width: 768px) {
    .scroll-btn { display: none; }
    .product-card { flex: 0 0 80%; }
    .products-scroll { flex-wrap: nowrap; }
    .products-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.cooperate-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.cooperate-container h1,
.cooperate-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Industries */
.industries .industry-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.industry-card {
    flex: 0 0 250px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.industry-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Brands */
.brands .brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.brands .brand-logos img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* Team Members */
.team .team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.team-member {
    flex: 0 0 220px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-member h3 {
    margin-bottom: 5px;
}

/* Responsive */
@media(max-width: 768px) {
    .industries .industry-cards,
    .team .team-members,
    .brands .brand-logos {
        flex-direction: column;
        align-items: center;
    }

    .industry-card, .team-member {
        flex: 0 0 90%;
    }
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
    margin-right: 20px;
}

.hero-text h1 { font-size: 2.5em; margin-bottom: 20px; }
.hero-text p { font-size: 1.2em; margin-bottom: 20px; }
.hero-text .btn-primary {
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.hero-image {
    flex: 1 1 400px;
}
.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* About, Industries, Brands, Team styles are as previously defined in style.css */

/* Buttons */
.btn-primary:hover { background: #218838; }

/* Responsive */
@media(max-width: 768px){
    .hero { flex-direction: column; text-align: center; }
    .hero-text { margin-right: 0; margin-bottom: 20px; }
}
.contact {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact .btn-primary {
    width: 150px;
    text-align: center;
}

.contact-info {
    flex: 1 1 300px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.contact-info h3 { margin-bottom: 5px; }

@media(max-width: 768px){
    .contact-container { flex-direction: column; }
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: #f0f8ff;
}

.hero-text {
    flex: 1 1 400px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #005bb5;
}

/* About Section */
.about {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Industries Section */
.industries {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.industries h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.industry-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.industry-card {
    flex: 0 0 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.industry-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.industry-card .btn-primary {
    margin-top: 10px;
}

/* Brands Section */
.brands {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.brand-logos img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s;
}

.brand-logos img:hover {
    transform: scale(1.1);
}

/* Team Section */
.team {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-member {
    flex: 0 0 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-member img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .industry-cards, .team-members, .brand-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .industry-card, .team-member {
        flex: 1 1 80%;
    }
}
/* Products Section */
.products {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.product-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    flex: 0 0 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    margin-bottom: 5px;
    font-weight: bold;
    color: #222;
}

.rating {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Culture Section */
.culture {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.culture ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.culture li {
    font-size: 1.1rem;
    margin: 5px 0;
}

/* Location Section */
.location {
    padding: 60px 20px;
    text-align: center;
}

.map iframe {
    border-radius: 10px;
}
/* About Page Container */
.about-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.about-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #555;
}

/* Sections */
.about-container section {
    margin-bottom: 50px;
}

.about-container h2 {
    margin-bottom: 15px;
    color: #222;
    font-size: 1.8rem;
}

/* Culture & Values */
.culture-list, .values-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.culture-list li, .values-list li {
    font-size: 1.1rem;
    margin: 8px 0;
}

/* Team Section */
.team-members {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 220px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Map */
.map iframe {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-details {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.product-details h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.product-details .headline {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.product-gallery .product-img {
    width: calc(50% - 10px);
    border-radius: 8px;
    object-fit: cover;
}

.highlights li {
    list-style: "✔ ";
    margin-left: 20px;
}

.documents li a {
    color: #007BFF;
    text-decoration: underline;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #28a745;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 1rem;
}

.product-gallery {
    flex: 1;
    min-width: 320px;
}

.product-gallery .main-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-row img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
    border: 2px solid transparent;
}

.thumbnail-row img:hover,
.thumbnail-row img.active {
    opacity: 1;
    border-color: #007bff;
}

.product-details {
    flex: 1;
    min-width: 320px;
}

.product-details h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-details .headline {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.product-details .short-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.highlights {
    list-style: disc inside;
    margin: 0.5rem 0 1rem;
    padding-left: 1rem;
}

.pricing-box {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.product-documents {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.product-documents ul {
    list-style: none;
    padding: 0;
}

.product-documents li a {
    color: #007bff;
    text-decoration: none;
}

.product-documents li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }

    .thumbnail-row img {
        width: 60px;
        height: 60px;
    }
}

.product-page {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Thumbnails */
.thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    background: #fff;
}

.thumbs img.active {
    border-color: #007bff;
    transform: scale(1.05);
}

/* Right column styling */
.right-col h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.right-col .headline {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
}

.right-col h4 {
    margin-top: 15px;
    color: #222;
    font-weight: bold;
}

.right-col p, 
.right-col li {
    color: #555;
    line-height: 1.6;
}

.right-col ul {
    list-style: disc;
    margin-left: 20px;
}

/* Action buttons */
.actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
}

.btn-secondary:hover {
    background: #ddd;
}

/* Documents Section */
.documents-section {
    margin-top: 40px;
}

.documents-section h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.documents-section ul {
    list-style: none;
    padding: 0;
}

.documents-section li {
    margin: 5px 0;
}

.documents-section a {
    color: #007bff;
    text-decoration: none;
}

.documents-section a:hover {
    text-decoration: underline;
}

/* ===== Responsive Styling ===== */
@media (max-width: 768px) {
    .product-wrap {
        grid-template-columns: 1fr;
    }
    .main-image img {
        max-height: 350px;
    }
}
.category-container {
  width: 95%;
  max-width: 1200px;
  margin: 20px auto;
}

.category-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.price {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  min-height: 40px;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cart-btn, .btn-primary {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}

.add-cart {
  background: #28a745;
  color: #fff;
}

.remove-cart {
  background: #dc3545;
  color: #fff;
}

.btn-primary {
  background: #007bff;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}

.btn-primary:hover, .add-cart:hover, .remove-cart:hover {
  opacity: 0.9;
}

/* Pagination */
.pagination {
  margin-top: 30px;
  text-align: center;
}

.page-btn {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 3px;
  border: 1px solid #007bff;
  border-radius: 5px;
  color: #007bff;
  text-decoration: none;
}

.page-btn.active,
.page-btn:hover {
  background: #007bff;
  color: #fff;
}

.no-products {
  text-align: center;
  font-size: 16px;
  color: #999;
  margin-top: 30px;
}
.category-title {
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 20px;
  color: #222;
  padding-bottom: 8px;
  border-bottom: 3px solid #007bff;
  text-align: left;
  display: inline-block;
}

.category-title a {
  color: inherit;
  text-decoration: none;
}

.category-title a:hover {
  color: #007bff;
  text-decoration: underline;
}
 #items {
        position: relative;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        transition: all 0.2s;
        transform: scale(0.98);
        will-change: transform;
        user-select: none;
        cursor: pointer;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .items.active {
        background: rgba(255,255,255,0.3);
        cursor: grabbing;
        cursor: -webkit-grabbing;
        transform: scale(1);
    }
    .vendor {
        color:red;
    }
    .item {
        font-weight: bold;
    }
    .seller-subtotal {
        color:green;
        font-weight: bold;
    }
    .header-cart {
        position: absolute;
        top: 15px;
        right: 25px;
    }

    .cart-button {
        background: #28a745;
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
        transition: background 0.3s;
    }

    .cart-button:hover {
        background: #218838;
    }
    /* Customer info fields in cart */
.customer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    max-width: 400px;
}

.customer-info label {
    font-weight: bold;
    margin-bottom: 5px;
}

.customer-info input,
.customer-info textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

/* view_order.php table styling */
.order-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.order-details-table th,
.order-details-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.order-details-table th {
    background-color: #f8f8f8;
}

.order-summary {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

.order-info {
    margin-top: 10px;
}

.order-info p {
    margin: 5px 0;
}
.order-box {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.order-summary {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.order-summary th, .order-summary td {
    border: 1px solid #ddd;
    padding: 8px 12px;
}
.order-summary th {
    background: #f7f7f7;
    text-align: left;
    width: 200px;
}
.success-box, .error-box {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.success-box { background: #e0f8e9; color: #257a3a; }
.error-box { background: #fbeaea; color: #b32626; }
.policy-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policy-section h1 {
  text-align: center;
  color: #004c91;
  margin-bottom: 20px;
}

.policy-section h2 {
  margin-top: 30px;
  color: #0073b1;
  border-left: 4px solid #0073b1;
  padding-left: 8px;
}

.policy-section p {
  line-height: 1.6;
  color: #333;
}

.policy-section ul, 
.policy-section ol {
  margin-left: 25px;
  color: #444;
}

.policy-section li {
  margin-bottom: 10px;
}

/* ===== Footer Styling ===== */
.site-footer {
  background: #002b49;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00b3ff;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}


@media (max-width: 768px) {
  .policy-section {
    margin: 20px;
    padding: 15px;
  }
  .policy-section h1 {
    font-size: 1.5em;
  }
  .footer-links {
    display: block;
    margin-bottom: 25px;
  }

  .footer-links a {
    display: block;
    margin: 6px 0;
  }
}