#grad2 {
  background-color: black; 
  text-align: center;
  color: white;
  max-width: 100%;
  overflow-x: hidden;
}

body, html {
  background-color: black !important;
  color: white !important;
  overflow-x: hidden;
}

#grad1 {
    background: linear-gradient(to right, #000000, #434343);
}
html {
  overflow-x: hidden;
}
#head1 {
  text-align: center;
  text-shadow: 1px 0.5px orange;
  font-weight: bold; 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
   margin: 0;
    padding: 0;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.product-item {
  padding: 20px;
  background-color: #111;
  border-radius: 10px;
}

#Optimism_P, #Trust_P, #TheHand_P, #Me-Time_P, #Dream_P, #Respect_P, #AKA_P  {
  text-decoration-line: underline;
  font-weight: bold;
}
#button1 {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

#button1 {
  background-color: black; 
  color: white; 
  border: 2px solid #04AA6D;
}

#button1:hover {
  background-color: orange;
  color: black;
}

#button2 {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

#button2 {
  background-color: black; 
  color: white; 
}

#button2:hover {
  background-color: orange;
  color: black;
}

.founder img, .story img, .values img {
   width: 100%;
   height: auto;
}

.hero {
    background-color: #222;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
    margin: 10px 0 0;
}

.section {
    padding: 50px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.story, .values, .closing, .founder{
    background-color: #333;
    padding: 50px 0;
    text-align: center;
}

.story h2, .values h2, .founder h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.story p, .values p, .closing p, .founder {
    font-size: 1.2em;
    line-height: 1.6;
}

footer {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

footer img {
    margin-bottom: 10px;
}

footer p {
    margin: 0;
}

footer {
    color: #ffffff;
}


#backButton {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background-color: black; 
  color: white; 
  border: 2px solid #04AA6D;
}

#backButton:hover {
  background-color: orange;
  color: black;
}

*/ Account center */

.account-center {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
}

.account-details {
  margin-bottom: 15px;
}

.account-details label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.account-details input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

#save-button {
  background-color: #04AA6D;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#save-button:hover {
  background-color: #45a049;
}


/* custom.css */
.products-page {
    background-color: black;
    color: white; /* Optional: to ensure text is visible on a black background */
}


#popup-card {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: none; /* Initially hidden */
        animation: fadeIn 0.5s ease-in-out;
    }

    /* Fade-out animation */
    @keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }

