/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* COLORS */
:root {
  --red: #E1251B;
  --dark: #0B0B0B;
  --gray: #1A1A1A;
  --white: #ffffff;
}

/* BODY */
body {
  background-color: var(--dark);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("images/hero-bread.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 2rem;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

/* BADGE */
.badge {
  display: inline-block;
  background: var(--red);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

/* HEADLINE */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--red);
}

/* TEXT */
.hero p {
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
  color: #ddd;
  font-size: 1rem;
}

/* BUTTONS */
.btn {
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-bottom: 0rem;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
  
  
  
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --red: #E1251B;
  --dark: #0B0B0B;
  --gray: #1A1A1A;
  --white: #ffffff;
}

body {
  background: var(--dark);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("images/hero-bread.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.badge {
  background: var(--red);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
  color: #ddd;
}

.btn {
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  font-weight: bold;
  border: none;
  margin-bottom: 0rem;
  cursor: pointer;
}

.btn.primary {
  background: var(--red);
  color: white;
}

.btn.secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

/* SECTIONS */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.dark {
  background: var(--gray);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.center-text {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

/* GRID */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARDS */
.card {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 16px;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* TESTIMONIAL */
.testimonial {
  background: var(--gray);
  padding: 2rem;
  border-radius: 16px;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  color: var(--red);
}

/* CONTACT */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: none;
}

textarea {
  resize: none;
  height: 120px;
}

/* FOOTER */
footer {
  background: black;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
}

.logo {
  font-weight: 900;
  color: white;
  font-size: 1rem;
}

.menu-icon {
  font-size: 1.8rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#0b0b0b, #1a1a1a);
  padding: 4rem 2rem;
  transition: 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
}

/* MOBILE MENU BASKET POSITION FIX */
.mobile-menu .cart-btn {
  margin-top: 0;
}


/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  cursor: pointer;
}

/* SHOW MENU */
.mobile-menu.show {
  right: 0;
}

/* OFFSET HERO FOR NAVBAR */
.hero {
  padding-top: 10px;
}


/* PRODUCT GRID */
.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* PRODUCT CARD */
.product-card {
  background: var(--gray);
  padding: 1.5rem;
  border-radius: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card .desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  flex-grow: 1;
}

.product-card .price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  margin: 1rem 0;
}

/* BUY BUTTON */
.product-card .btn {
  margin-top: auto;
}


/* ABOUT SECTION */
.about {
  text-align: left;
}

.about-content {
  max-width: 700px;
  margin: auto;
}

.about-badge {
  display: inline-block;
  color: var(--red);
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about p {
  color: #d1d1d1;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* BUTTON ALIGN */
.about .btn {
  margin-top: 1.5rem;
  width: auto;
  padding: 0.8rem 2.2rem;
}


/* TESTIMONIALS */
.testimonials {
  background: var(--dark);
}

.section-badge {
  display: inline-block;
  color: var(--red);
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.testimonial-slider {
  max-width: 700px;
  margin: 3rem auto 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: var(--gray);
  border-radius: 20px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-slide.active {
  display: block;
  animation: fadeSlide 0.6s ease;
}

.testimonial-slide p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e5e5;
}

.author {
  margin-top: 1.5rem;
}

.author strong {
  display: block;
  font-size: 1rem;
}

.author span {
  color: var(--red);
  font-size: 0.9rem;
}

/* DOTS */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #444;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--red);
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FOOTER */
.footer {
  background: #000;
  padding: 4rem 2rem 2rem;
}

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

.footer-col h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--red);
}

.footer-col p {
  color: #bbb;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--red);
}

/* SOCIAL LINKS */
.socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}


.btn {
  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: #ff2a20;
  box-shadow: 0 0 20px rgba(225, 37, 27, 0.6);
  transform: translateY(-2px);
}

.btn.secondary:hover {
  background: rgba(225, 37, 27, 0.15);
  border-color: var(--red);
  color: var(--red);
}


.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.product-card:hover .price {
  color: #ff2a20;
}


.mobile-menu a {
  position: relative;
  transition: color 0.3s ease;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-menu a:hover::after {
  width: 100%;
}
.footer-col a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--red);
  transform: translateX(5px);
}

.socials a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.socials a:hover {
  color: var(--red);
  text-shadow: 0 0 8px rgba(225, 37, 27, 0.7);
}

.testimonial-slide {
  transition: box-shadow 0.3s ease;
}

.testimonial-slide:hover {
  box-shadow: 0 0 25px rgba(225, 37, 27, 0.3);
}


/* =========================
   DESKTOP ENHANCEMENTS
   ========================= */

@media (min-width: 1024px) {

  /* NAVBAR */
  .menu-icon {
    display: none;
  }

  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    position: relative;
  }

  .desktop-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .desktop-menu a:hover::after {
    width: 100%;
  }

  .cart-btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
  }

  /* HERO */
  .hero {
    padding: 6rem 6rem;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .hero .btn {
    width: auto;
    margin-right: 1rem;
  }

  /* PRODUCTS */
  .product-grid {
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  /* ABOUT SPLIT LAYOUT */
  .about {
    padding: 6rem 2rem;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
  }

  .about-content::after {
    content: "";
    height: 100%;
  }

  /* TESTIMONIALS */
  .testimonial-slider {
    max-width: 900px;
  }

  .testimonial-slide {
    padding: 3rem 4rem;
  }

  /* CONTACT */
  .contact-form {
    max-width: 700px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  /* FOOTER */
  .footer-content {
    max-width: 1300px;
  }
}

.section {
  max-width: 1400px;
  margin: auto;
}


/* NAV VISIBILITY DEFAULTS (MOBILE FIRST) */
.desktop-menu {
  display: none;
}

.menu-icon {
  display: block;
}


@media (min-width: 1024px) {

  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .menu-icon {
    display: none;
  }

}

/* FAQ ACCORDION */
.faq {
  max-width: 900px;
}

.faq-group {
  margin-top: 3rem;
  text-align: left;
}

.faq-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--red);
}

.faq-item {
  background: var(--gray);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.4rem;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.7;
  padding-bottom: 1.4rem;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--red);
}


.section-intro {
  max-width: 650px;
  margin: 0.8rem auto 3rem;
  color: #ccc;
}

.feature-grid {
  display: grid;
  gap: 1.8rem;
}

.feature-card {
  background: #111;
  padding: 2rem;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card.light {
  background: var(--gray);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(180, 0, 0, 0.25);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: #ccc;
  line-height: 1.7;
}

.feature-card .link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-weight: bold;
  text-decoration: none;
}

.feature-card .link:hover {
  text-decoration: underline;
}

/* DESKTOP */
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payments-support .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.story-grid {
  display: grid;
  gap: 3rem;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
}

.story-text .lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.step {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

.cta {
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* DESKTOP */
@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}


.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-form-wrapper,
.contact-info {
  background: #111;
  padding: 2.5rem;
  border-radius: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: none;
  background: #1c1c1c;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* DESKTOP */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.basket-dropdown {
  position: absolute;
  top: 60px; /* below navbar */
  right: 20px;
  width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  display: none;
  z-index: 1000;
}

.basket-dropdown .basket-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.basket-dropdown .basket-total {
  border-top: 1px solid #ccc;
  padding-top: 10px;
  margin-top: 10px;
  font-weight: bold;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* =========================
   MOBILE BASKET DRAWER
   ========================= */
@media (max-width: 1023px) {
    

  .basket-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;

    width: 100%;
    max-height: 70vh;
    overflow-y: auto;

    background: #000;
    border-top: 2px solid var(--red);
    border-radius: 20px 20px 0 0;

    padding: 20px;
    z-index: 4000; /* ABOVE mobile menu */
  }
}




