:root {
 --bg-light: rgb(250, 250, 250);
 --bg-dark: rgb(18, 18, 18);
 --text-light: rgb(20, 20, 20);
 --text-dark: rgb(230, 230, 230);
 --accent: linear-gradient(
  180deg, 
  rgb(92,188,255) 0%,
  rgb(92,188,255) 10%,
  rgb(46,255,12) 100%
 );
}

body {
 margin: 0;
 font-family: system-ui, sans-serif;
 background: var(--bg-light);
 color: var(--text-light);
 transition: background 0.3s, color 0.3s;
 overflow-x: hidden;

}

main {
    overflow: visible;
}

body.dark {
 background: var(--bg-dark);
 color: var(--text-dark);
}

h1,h2,h3,h4 {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: .85;
}

/* HEADER */
.site-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 1rem 2rem;
 position: sticky;
 top: 0;
 background: inherit;
 z-index: 10;
}

.logo img {
 height: 90px;
 background: none;
}

.main-nav a {
 position: relative;
 opacity: .75;
 text-decoration: none;
 color: inherit;
 transition: opacity 0.2s ease;
 margin: 10px;
}

.main-nav a:hover{
    opacity: 1;
}

#themeToggle {
 font-size: 1.2rem;
 background: none;
 border: none;
 cursor: pointer;
}

/* HERO */
.hero img {
 width: 1200px;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 max-width: 100%;
 border-radius: 12px;
 background-size: contain;
 background-position: center;
 background-repeat: no-repeat;
}

.about-preview{
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  border-radius: 12px;
  position: relative;
  padding: 20px 20px;
  text-align: center;
  color: white;
  border-radius: 12px;
  margin-top: 40px;
}
/* SECTIONS */
section {
 padding: 3rem 2rem;
 max-width: 1200px;
 margin: auto;
 text-align: center;
}

.cta-button {
 display: inline-block;
 margin-top: 1rem;
 padding: 0.75rem 1.5rem;
 background: var(--accent);
 color: black;
 text-decoration: none;
 border-radius: 5px;
}

/* ---------- FEATURES SECTION ---------- */
.features {
  padding: 4rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.03);
}

body.dark .feature-card {
  background: rgba(255,255,255,0.06);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

/* ---------- ETHICS SECTION ---------- */
.ethics {
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0.02);
  text-align: center;
  border-radius: 12px;
}

body.dark .ethics {
  background: rgba(255, 255, 255, 0.04);
}

.ethics-intro {
  max-width: 700px;
  margin: 1.5rem auto;
  font-size: 1.1rem;
}

.ethics-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 2rem auto 0;
}

.ethics-list li {
  margin: 0.75rem 0;
  font-size: 1rem;
}

/* ---------- PRESS SECTION ---------- */
.press {
  padding: 3.5rem 1rem;
  text-align: center;
  font-style: italic;
}

.press blockquote {
  max-width: 800px;
  margin: auto;
  font-size: 1.4rem;
}

.press-source {
  margin-top: 1rem;
  font-style: normal;
  font-weight: bold;
  color: var(--accent);
}

/* PRODUCTS */
.product-grid {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
 gap: 2.25rem;
 border-radius: 12px;
}

.product-card {
 text-decoration: none;
 color: inherit;
 width: 100%;
 border-radius: 12px;
 margin: 20px;
}

.product-card img {
 width: 100%;
 height: 150px;
 object-fit: cover;
 display: block;
 transition: transform 0.3s;
 border-radius: 12px;
}

.product-card:hover img {
 transform: scale(1.05);
}

/* BACK TO TOP */
#backToTop {
 background-color: rgb(120, 200, 160);
 color: rgb(0, 0, 0);
 position: fixed;
 bottom: 30px;
 right: 30px;
 padding: 0.75rem 1rem;
 border: none;
 border-radius: 999px;
 cursor: pointer;
 opacity: .85;
 display: block;
}

#backToTop:hover {
    opacity: 1;
    transform: translateY(-3px);
}


/* ---------- TEXT CALL TO ACTION ---------- */
.text-cta {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-image: url(Flowers1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  border-radius: 12px;
}

body.dark .text-cta {
  background-color: rgba(255,255,255,0.05);
}

.text-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.text-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ---------- BANNER CTA ---------- */
.banner-cta {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  color: #fff;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 1200px;
}

body.dark .banner-cta {
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
}

.banner-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}


/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: rgba(0,0,0,0.02);
  border-radius: 12px;
}

body.dark .reviews-section {
  background-color: rgba(255,255,255,0.05);
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1.5rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

body.dark .review-card {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 10px rgba(255,255,255,0.05);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: bold;
  color: var(--accent);
}

/* ---------- AWARDS SECTION ---------- */
.awards-section {
  padding: 3rem 1rem;
  text-align: center;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* ---------- CONTACT CTA VARIANT ---------- */
.contact-cta {
  margin: 3rem auto;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  background-image: url(images/Flowers2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

body.dark .contact-cta {
  background: rgba(255, 255, 255, 0.06);
}

/* Secondary button style */
.cta-button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
  background: var(--accent);
  color: #000;
}

/* FOOTER */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 2rem 2rem;
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
  transition: background 0.3s, color 0.3s;
  border-radius: 12px;
}

body.dark .site-footer {
  background: rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

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

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-copy {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* About Page */

.about-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: inherit;
  color: inherit;
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  border-radius: 12px;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-intro,
.about-technical,
.about-future {
  max-width: 900px;
  margin: 3rem auto;
  line-height: 1.7;
}

.about-technical ul {
  margin: 1rem 0 2rem 1.5rem;
  text-align: left;
}

.about-cta{
    margin: 4rem auto 0;
    max-width: 900px;
}

/* Shop Page */

.header-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
}

#cartCount {
  background: var(--accent);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  padding: 0 6px;
  font-size: 0.85rem;
  position: absolute;
  top: -8px;
  right: -10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.product-card {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0,0,0,0.02);
  transition: transform 0.2s ease, opacity 0.2s;
}

body.dark .product-card {
  background: rgba(255,255,255,0.05);
}

.product-card:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
}

.product-price {
  display: block;
  margin-bottom: 0.5rem;
}

.shop-hero{
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  border-radius: 12px;
  position: relative;
  padding: 20px 20px;
  text-align: center;
  color: white;
  border-radius: 12px;
  margin-top: 40px;
}

/* Order Page */

.order-items {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.order-hero{
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  border-radius: 12px;
  position: relative;
  padding: 20px 20px;
  text-align: center;
  color: white;
  border-radius: 12px;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.02);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

body.dark .cart-item {
  background: rgba(255,255,255,0.05);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 1rem;
}

.cart-item-details {
  flex: 1;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-controls button {
  padding: 0.3rem 0.6rem;
  cursor: pointer;
}

.order-summary {
  text-align: right;
  margin-top: 2rem;
  font-size: 1.25rem;
  font-weight: bold;
}

#finalCheckout {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  background: var(--accent);
  border: none;
  border-radius: 8px;
}

/* ---------- CONTACT PAGE ---------- */

.contact-hero {
  text-align: center;
  margin: 3rem auto;
  max-width: 700px;
}

.contact-form-section {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
}

body.dark .contact-form {
background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

body.dark .form-group input,
body.dark .form-group textarea {
  background: #222;
  color: #fff;
  border-color: #444;
}

.form-status {
  margin-top: 1rem;
  font-weight: bold;
  text-align: center;
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 0.6rem 0.9rem;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  cursor: pointer;
  display: none;
}

#backToTop:hover {
  opacity: 0.85;
}

/* ---------- FLYING EMAIL ---------- */

.send-wrapper {
  position: relative;
  display: inline-block;
}

/* Horizontal drift */
.flying-mail-wrapper {
  position: absolute;
  bottom: -10px;      
  left: 62%;       
  pointer-events: none;
  z-index: 2;

  animation: drift-mail 6s ease-in-out infinite;
}

/* Vertical float */
.flying-mail {
  font-size: 2rem;
  animation: float-mail 2.5s ease-in-out infinite;
}

/* Small horizontal movement */
@keyframes drift-mail {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Gentle vertical bob */
@keyframes float-mail {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --- Social Feed Cards with Banner Gradients --- */
.social-feed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.social-card {
  position: relative;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  color: white; /* text color for contrast on gradient */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
}

/* Optional hover: brighten the gradient */
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  filter: brightness(1.1);
}

/* Header for username */
.social-header {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Post text */
.social-card p {
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}


.social-logos {
  text-align: center;
  padding: 20px;
 background: linear-gradient(180deg, rgb(255,124,49)20%,rgb(255,0,7)100%);
  color: #fff;
  border-radius: 12px;
  margin: auto;
  max-width: 1200px;
  width: 100%;
}

.social-logos h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.logo-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
 display: flex;
}

.social-link img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.social-link:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}







/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .flying-mail-wrapper,
  .flying-mail {
    animation: none;
  }
}








.caution-border {
  border: 8px solid; 
  border-image: repeating-linear-gradient(
    45deg,             
    #FFD700 0,         
    #FFD700 10px,      
    #000000 10px,      
    #000000 20px       
  ) 1;                 

  padding: 10px;       
  display: inline-block;
}