/* Base Reset */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7fe;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 70px;
}

/* Navigation */
nav {
  position: absolute;
  right: 20px;
  top: 25px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Product Section */
.product-section h1{
  text-align: left;
}

.product-section {
  h1 {
    color: #f9fafb;
  }
  background: #70b7fa;
   text-align: left; 
  padding: 40px;
  display: flex;               /* Flex container */
  flex-wrap: wrap;             /* Wrap to next line if needed */
  justify-content: space-between; /* Evenly spaced cards */
  gap: 20px;                   /* Space between cards */
  /* Heading inside product section */
}

/* Product Card */
.product-card {
  background: white;
  padding: 20px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.product-card button {
  background: white;
  color: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.product-card button:hover {
  background: #000;
  color: #fff;
}

/* Floating Cart Icon */
.cart-icon-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #007BFF;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
}

/* Cart Modal */
.cart-modal {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

.cart-modal-content {
  padding: 20px;
}

.cart-modal-content .close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.checkout-btn {
  margin-top: 10px;
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Popup Message */
#popup-message {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4CAF50;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 10000;
  font-weight: bold;
}

    footer {
        background-color: #222;
        color: #fff;
        padding: 40px 20px;
        font-family: Arial, sans-serif;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-about, .footer-links {
        flex: 1 1 300px;
    }

    .footer-about h3, .footer-links h4 {
        margin-bottom: 10px;
        color: #00aaff; /* your brand blue */
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-links ul li a {
        color: #fff;
        text-decoration: none;
    }

    .footer-links ul li a:hover {
        text-decoration: underline;
        color: #00aaff;
    }

    .footer-copy {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #aaa;
    }

    .shipping.html{
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            line-height: 1.6;
            background-color: #f9f9f9;
            color: #333;
        }
        h1, h2 {
            color: #030506;
        }
        a {
            color: #00aaff;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .abouthtml{
            margin: 0;
            font-family: 'Times New Roman', Times, serif;
            background-color: #eef8ff;
            color: #333;
            line-height: 1.8;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 60px 20px;
        }

        h1, h2, h3 {
            color: #021116;
            font-family: 'Times New Roman', Times, serif;
        }

        .hero {
            text-align: center;
            margin-bottom: 70px;
            font-family: 'Times New Roman', Times, serif;
        }

        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: auto;
        }

        .section {
          text-align: center;
            margin-bottom: 0%;
            background-color: #eef8ff;
            padding: 20px 20px;
            border-radius: 12px;
            font-family: 'Times New Roman', Times, serif;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 20px;
            font-family: 'Times New Roman', Times, serif;
        }

        .feature-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .highlight {
            background-color: #eef8ff;
            padding: 50px 30px;
            border-radius: 12px;
        }

        .cta {
            text-align: center;
            margin-top: 60px;
            font-family: 'Times New Roman', Times, serif;
        }

        .cta a {
            display: inline-block;
            padding: 14px 30px;
            background-color: #00aaff;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 16px;
        }

        .cta a:hover {
            background-color: #008ecc;
        }

        .contacthtml{
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f8f9fb;
            color: #333;
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 60px 20px;
        }

        h1, h2, h3 {
            color: #00aaff;
        }

        .intro {
            max-width: 750px;
            margin-bottom: 50px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .contact-card p {
            margin-bottom: 12px;
        }

        form input,
        form textarea,
        form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
        }

        form button {
            width: 100%;
            padding: 14px;
            background-color: #00aaff;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
        }

        form button:hover {
            background-color: #008ecc;
        }

        .support-list {
            list-style: none;
            padding: 0;
        }

        .support-list li {
            margin-bottom: 10px;
        }

        .note {
            margin-top: 30px;
            font-size: 14px;
            color: #666;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }