@import url('fonts.googleapis.com');

:root
{
  --ff: font-family: "Open Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;

  font-size: larger;


  background-color: #F5ECE6 ;
}
a {
text-decoration: none;
color: #333;
}
/* Header Container */
.header {
  background-color: #f2ede8;
  border-bottom: 1px solid #ddd;
}

/* Top bar */
.top-bar {
  display: flex;
  font-family: var(--ff);
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  font-size: 14px;
  color: #4b4b4b;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
    font-family: var(--ff);
}

.top-right span {
  border-right: 1px solid #d3b8a0;
  padding-right: 15px;
    font-family: var(--ff);
}

.top-right span:last-child {
  border: none;
    font-family: var(--ff);
  padding-right: 0;
}

/* Logo */
.logo img {
    text-align: center;
  letter-spacing: 1px;
  height: 75px;
  border: 2px solid white;
  border-radius: 5px;
  width: auto;
}

/* Bottom Nav */
.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
    font-family: var(--ff);
  padding: 15px;
  background-color: #f2ede8;
  border-top: 1px solid #e1d6cb;
}

.nav-bar a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
    font-family: var(--ff);
}

.nav-bar a:hover {
  color: #ff5a00;
}

.highlight {
  color: #ff5a00;
  font-weight: 700;
    font-family: var(--ff);
}

/* Icon placeholders */
.icon {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }

  .nav-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
}


.shop-section {
  text-align: center;
  padding: 50px 20px;
}

.shop-section h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.product-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0px;
}

.product {
  text-align: center;
}

.product img {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.2);
}

.product p {
  font-weight: 700;
  color: #ff5500;
  font-size: 18px;
  letter-spacing: 1px;
}

.photo img {
  width: 1425px;
  height: auto;
}

.mid {
  display: flex;
  justify-content: center;
}

.mid img {
  width: 45%;
  padding: 10px;
}






.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 5px 10px;
  flex-wrap: wrap;
}

.box {
  width: 45%;
}

.box h2 {
  font-size: 34px;
  font-weight: bold;
  color: #1a1a1a;

}

.box p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin: 20px 0;
}

.btn {
  background-color: #f15a00;
  color: white;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* !important; */

}
.btn:hover {
  background-color: #d94e00;
  transition: 0.3s;
  color: white;
}


.beige {
  background-color: rgb(229, 192, 133);
  text-align: center;
}

.beige h2 {
  font-size: 34px;

  color: #000000;
}

.beige pre {
  font-size: 34px;
  font-weight: bold;
  color: #333;
  overflow: hidden;

}

.code button {
  background-color: #da7c46;
  width: 300px;
  height: 30px;
  font-size: 16px;
  font-weight: bold;
}















.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.product-card {
  background-color: white;
  width: 280px;
  padding: 20px;
  border: 1px solid #e6e2df;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 70%;
  height: auto;
  margin-bottom: 10px;
}

.count {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 8px 0;
}

.desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 10px;
}

.stars {
  color: #e67e22;
  font-size: 18px;
  margin-bottom: 10px;
}

.price {
  margin-bottom: 10px;
}

.price .old {
  text-decoration: line-through;
  color: gray;
  margin-right: 8px;
}

.price .new {
  color: #e67e22;
  font-weight: 700;
  font-size: 18px;
}

button {
  background-color: #ecc9c9;
  color: rgb(74, 74, 74);
  width: 100%;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  text-align-last: left;
  transition: 0.3s;
  border: solid 2px #bc9393;
}

button:hover {
  background-color: #e67e22;
  color: white;
  border: none;
}

.shop-now
{
  display: flex;
  justify-content: space-between;
}


.block {
  margin-left: 8vh;
  width: 170vh;
  height: 500px;
  gap: 5px;
  display: flex;
  flex-direction: row;
}
.block-1 h1{
  position: relative;
  top: 20px;
}
.block-2 h1{
  position: relative;
  top: 20px;
}

.block-1 {
  background-image: url("https://www.bulletproof.com/wp-content/uploads/2025/09/bulletproof-og-coffee-and-boo-760x500.jpg");
  background-repeat: no-repeat;
  text-shadow: 2px 2px 5px black;
  height: 500px;
  text-shadow: 2px 5px 5px black;
  width: 100%;
  padding-left: 20px;
  color: white;
  display: flex;
  flex-direction: column-reverse;
  
}

.block-1:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.block-2:hover {
  transform: translateY(-5px);
  opacity: 0.7;
}

.block-2 {
  background-image: url("https://www.bulletproof.com/wp-content/uploads/2025/07/the-ultimate-guide-to-cold-brew-760x500.jpg");
  background-repeat: no-repeat;
  height: 500px;
  width: 100%;
  display: flex;
  padding-left: 20px;
  flex-direction: column-reverse;
  justify-content: end;
  color: white;
   text-shadow: 2px 5px 5px black;
  
}
.block-2 h2{
  color: white;
  
  position: relative;
  top: 55px;

}
.block-1 h2{
  color: white;
  
  position: relative;
  top: 55px;

}

.part {
  display: flex;
  margin: 0;
  justify-content: center;
  
}
:root{
  --gap: 18px;
  --card-height: 300px;
  --overlay-gradient: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3) 40%, transparent);
  --accent-color: #fff;
  --kicker-size: 12px;
  --title-size: 18px;
  font-family: "Georgia", "Times New Roman", serif;
  color-scheme: light;
}

body{
  margin:20px;
  color:#222;
}

/* Section heading */
.cards-section h1{
  font-size:2rem;
  margin:10px 0 18px;
}

/* Grid: responsive 3-up -> 2-up -> 1-up */
.part {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

/* Card shell */
.heyo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e9e7e5;
  height: var(--card-height);
  display:block;
}

/* Make the whole card clickable and keyboard accessible */
.card-link {
  display:block;
  width:100%;
  height:100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* Image fills the card and crops with cover */
.heyo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 400ms cubic-bezier(.2,.9,.3,1), filter 250ms;
  will-change: transform;
  
}

/* Subtle zoom-in on hover or keyboard focus */
.heyo:hover img,
.heyo:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.02);
}

/* Caption container sits over the image */
.caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: var(--overlay-gradient);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  transition: transform 300ms ease, opacity 300ms ease;
  transform: translateY(0);
  opacity: 1;
}

/* Kicker (small category label) */
.kicker{
  font-size: var(--kicker-size);
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  text-transform: uppercase;
}

/* Title / headline */
.title{
  margin: 0;  
  color: var(--accent-color);
  font-size: var(--title-size);
  line-height: 1.15;
 
  max-height: 3.3em;           /* clamp title height (approx 2 lines) */
  overflow: hidden;
  color: black;
}

/* On hover, slide caption up slightly and increase opacity (more "part of image") */
.heyo:hover .caption,
.heyo:focus-within .caption {
  transform: translateY(-6px);
  opacity: 1;
}

/* Focus indicator for keyboard users */
.card-link:focus {
  outline: 3px solid rgba(255,215,0,0.5);
  outline-offset: 3px;
}

/* Smaller screens: reduce card height and title size */
@media (max-width: 600px) {
  :root {
    --card-height: 220px;
    --title-size: 16px;
  }
  .caption { padding: 12px; }
  .kicker { font-size: 11px; }
}

/* Very small phones */
@media (max-width: 380px) {
  :root { --card-height: 180px; --title-size: 14px; }
}
.container-details {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 10vh;
}

/* .section {
  flex: 1;
} */
.block-1 h2
{
font-size: 24px;
 
  display: inline-block;
  
  color: white;
}
.article {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.article img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  margin-right: 15px;
}

.info {
  max-width: 250px;
}

.tag {
  background-color: #f8d0d0;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
}

/* .tag.orange {
  background-color: #e4d6c4;
} */
.tag:hover {
  color: red;
  cursor: pointer;
}

.title {
  font-size: 15px;
  /* line-height: 1.3; */
  color: #454545;
  
  margin: 0;
}



/* Subscription Bar */
.subscribe-bar {
  background-color: #f14d00;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

.subscribe-bar h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
}

.subscribe-input {
  display: inline-flex;
  background-color: white;
  border-radius: 3px;
  overflow: hidden;
}

.subscribe-input input {
  border: none;
  padding: 10px;
  width: 250px;
  outline: none;
}

.subscribe-input button {
  background-color: #f14d00;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
}

/* Footer main */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 30px 0;
  background-color: #fff;
}

.footer-column {
  margin: 10px;
}

.footer-column h3 {
  color: #f14d00;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: black;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  font-size: 12px;
  color: gray;
  padding: 10px 40px 20px 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}



.dropdown-content {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background-color: #1e1e1e;
  padding: 10px;
  border-radius: 5px;
}

.dropdown-content a {
  display: block;
  padding: 5px 10px;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

svg {

  position: relative;
  top: 6px;
  padding: 0;
}

/* Responsive store-logos overflow handling for small screens */
@media (max-width: 880px) {
  .store-logos {
    gap: 24px;
  }
  .store-search input[type="text"] {
    width: 220px;
  }
}

@media (max-width: 520px) {
  .store-logos img {
    max-height: 40px;
    margin: 0 6px;
  }
  .store-search {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .store-search input[type="text"] {
    width: 100%;
    max-width: none;
  }
  .store-search button {
    width: 100%;
  }
}
#r3-title ,#r2-title,#r1-title,#m3-title,#m3-title,#m3-title
{
color: white;
}

:root {
            --brand-green: #004731;
            --brand-red: #a32a29;
            --white: #ffffff;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #F5ECE6 ;
        }

        .hero-banner {
            /* display: flex; */
            width: 100%;
            min-height: 450px;
            position: relative;
            
            overflow: hidden;
        }

        /* The Left Text Panel */
        .text-panel {
            /* background-color: var(--brand-green); */
/* padding-top: 100px; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% 5%;
            color: var(--white);
            z-index: 2;
        }

        .eyebrow {
            font-size: 1.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .headline {
            font-size: 3.5rem;
            font-weight: 900;
            margin: 0 0 20px 0;
            line-height: 1;
        }

        .subtext {
            font-size: 1.1rem;
            max-width: 400px;
            margin-bottom: 30px;
            font-weight: 500;
            line-height: 1.4;
        }

        .shop-button {
            background-color: var(--white);
            color: var(--brand-green);
            text-decoration: none;
            padding: 15px 45px;
            font-weight: bold;
            display: inline-block;
            width: fit-content;
            transition: opacity 0.2s;
        }

        .shop-button:hover {
            opacity: 0.9;
        }

        /* The Right Image Panel */
        .image-panel {
height: 450px;
            background-image: url('https://cdn.shopify.com/s/files/1/0004/3470/0319/files/bulletproof-bulk-sizes-original-ground-collagen-and-original-creamer-with-red-gift-bow-desktop.jpg');
            background-size:cover;
            background-repeat: no-repeat;
            background-position: center;
        }


        .ribbon-vertical {
            position: absolute;
            top: 0;
            left: 45%; /* Positioned near the split */
            width: 25px;
            height: 100%;
            background-color: var(--brand-red);
            z-index: 3;
        }

        .bow-icon {
            position: absolute;
            top: 120px; /* Aligns with horizontal ribbon */
            left: 45%;
            transform: translateX(-35%);
            font-size: 80px;
            z-index: 4;
            color: var(--brand-red);
            filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3));
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-banner {
                flex-direction: column;
            }
            .image-panel {
                height: 300px;
            }
            .text-panel {
                padding: 40px 20px;
                text-align: center;
                align-items: center;
            }
            .headline {
                font-size: 2.5rem;
            }
             .ribbon-horizontal {
                display: none; /* Hide complex ribbon on mobile for clarity */
            }
        }