body {
    margin: 0;
    padding-top: 120px; /* enough room for banner + navbar */

    font-family: Arial, Helvetica, sans-serif;
}

.top-banner {
    background: #F7EEE2;
    color: #A31919;
    text-align: center;
    font-weight: bold;
    padding: 14px 12px;
    font-size: 18px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar {
    background: #A10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
    position: fixed;
    top: 52px;   /* HEIGHT OF TOP BANNER */
    left: 0;
    width: 100%;
    z-index: 9998;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
}

/* MOBILE MENU BUTTON */
.menu-btn {
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: none;
}

/* NAV LINKS (hidden on mobile) */
.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.cart-icon {
    font-size: 28px;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: white;
    color: red;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 50%;
}

/* HERO */
.hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

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

/* HERO TEXT */
.hero-text {
    position: absolute;
    right: 40px;
    top: 140px;
    color: white;
    text-shadow: 1px 1px 5px black;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.1;
}

.author {
    font-size: 24px;
    margin-top: 10px;
}

.shop-btn {
    background: #A10000;
    color: white;
    padding: 15px 40px;
    margin-top: 20px;
    font-size: 22px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* SNOWFLAKES */
.snowflake {
    position: absolute;
    font-size: 48px;
    color: white;
    opacity: 0.9;
}

.sf1 { top: 20px; left: 50%; }
.sf2 { top: 20px; right: 50%; }
.sf3 { bottom: 120px; right: 30%; }

/* Make sure the video box sits above the hero */
.video-box {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 240px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);

    /* Important: stacking and transition for fade */
    z-index: 9999;
    transition: opacity 220ms ease, transform 220ms ease;
    opacity: 1;
}

/* Ensure the video doesn't intercept clicks over the close button */
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: auto; /* keep clicks on video itself still allowed except where button sits */
}

/* Close button must be on top and clickable */
.close-btnn {
    position: absolute;
    top: 8px;
    right: 10px;
    color: white;
    font-size: 26px;
    cursor: pointer;
    text-shadow: 0 0 5px black;

    z-index: 10001;       /* higher than the video */
    pointer-events: auto; /* ensure it accepts pointer events */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Convenient helper to hide with fade */
.video-box.hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

/* Footer Styles */
.footer {
    background-color: #f1e6dc; /* light beige */
    padding: 40px 20px;
    margin-bottom: 3.2rem;
    font-family: Arial, sans-serif;
    color: #000;
}

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

.newsletter {
    flex: 1 1 400px;
}

.newsletter h2 {
    font-size: 28px;
    color: #900000; /* dark red */
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 15px;
    font-size: 16px;
}

.signup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.signup-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #000;
    outline: none;
}

.signup-form button {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    background-color: #900000; /* dark red */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.signup-form button:hover {
    background-color: #b30000;
}

.newsletter small {
    font-size: 11px;
    color: #333;
}

.newsletter small a {
    color: #000;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex: 1 1 300px;
    gap: 50px;
}

.footer-links .column p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-links .column strong {
    font-size: 16px;
}


.reward-bar {
    position: fixed;        /* Fix at the viewport bottom */
    bottom: 0;              /* Stick to the bottom */
    left: 0;
    width: 100%;            /* Full width */
    background: #A10000;
    color: white;         /* Dark red text */
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    padding-top: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); /* optional shadow */
    z-index: 1000;          /* Make sure it’s above other content */
    cursor: pointer;        /* if you want it clickable */
}


/* ==========================================
   RESPONSIVE — MOBILE VIEW
========================================== */

@media (max-width: 768px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none; /* hide menu on mobile */
    }

    .logo {
        font-size: 26px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        height: 90vh;
    }

    .hero-text {
        left: 20px;
        right: auto;
        top: 40%;
        transform: translateY(-50%);
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .author {
        font-size: 18px;
    }

    .shop-btn {
        font-size: 18px;
        padding: 12px 30px;
        border-radius: 8px;
    }

    /* Smaller snowflakes */
    .snowflake {
        font-size: 32px;
    }

    /* SMALLER VIDEO BOX */
    .video-box {
        width: 180px;
        height: 220px;
        right: 10px;
        bottom: 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 40px; /* slightly smaller on mobile */
}

.products-section {
    width: 90%;
    max-width: 1300px;
    margin: 40px auto;
}

.title {
    font-size: 70px;
    font-weight: 900;
    color: #b51d1d;
    text-align: left;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-box {
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

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

.zoom-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #b51d1d;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s ease;
}

.img-box:hover .zoom-btn {
    opacity: 1;
}

.product-card h3 {
    font-size: 18px;
    margin: 15px 0 5px;
    font-weight: bold;
    color: #222;
}

.price {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}

/* ---------- Product Preview Section ---------- */
.product-preview {
  width: 92%;
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: none;            /* hidden by default */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
  position: relative;
  padding: 22px;
}

.product-preview.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* layout inside preview */
.preview-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: center;
}

.preview-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

/* info column */
.preview-info h2 {
  font-size: 28px;
  margin: 0 0 12px;
  color: #222;
}

.preview-price {
  font-size: 22px;
  font-weight: 800;
  color: #b51d1d;
  margin-bottom: 12px;
}

.preview-desc {
  color: #444;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* buttons */
.preview-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  border: none;
}

.btn.primary {
  background: #b51d1d;
  color: #fff;
}

.btn.outline {
  background: transparent;
  color: #b51d1d;
  border: 2px solid #b51d1d;
}

/* close button inside preview */
.preview-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 11;
  color: #333;
}

/* Small screens: stack layout */
@media (max-width: 880px) {
  .preview-inner {
    grid-template-columns: 1fr;
  }
  .preview-media img {
    height: 260px;
  }
}


@media (max-width: 768px) {

     body {
        padding-top: 110px; /* mobile height */
    }

    .navbar {
        top: 48px; /* shorter top banner on mobile */
        margin-top: 20px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 40px; /* slightly smaller on mobile */
    }
}

@media (max-width: 470px) {

     body {
        padding-top: 110px; /* mobile height */
    }

    .navbar {
        top: 48px; /* shorter top banner on mobile */
        margin-top: 20px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }



    .logo img {
        height: 24px; /* slightly smaller on mobile */
    }
}

.menu-btn {
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-right: 15px;
}

/* MENU OVERLAY PANEL */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background: #f6a800;
    transition: 0.4s ease;
    z-index: 9999444499;
    display: flex;
    flex-direction: column;
}

/* RED HEADER INSIDE MENU */
.menu-header {
    background: #b00000;
    padding: 18px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

.menu-logo {
    font-size: 22px;
    font-weight: bold;
}

/* MENU ITEMS */
.menu-list {
    list-style: none;
    padding: 40px 25px;
    margin: 0;
}

.menu-list li {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* BOTTOM BUTTON AREA */
.menu-bottom {
    margin-top: auto;
    padding: 20px;
}

.shop-btn {
    width: 100%;
    background: #b00000;
    color: white;
    border: none;
    padding: 18px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;

