:root {
    --gold: #cfa23a;
    --dark: #111213;
    --muted: #777;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background: #fff;
}

/* Thin top black bar */
.top-strip {
    background: #000;
    color: #fff;
    padding: 6px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.top-strip span {
    white-space: nowrap;
    animation: bounce 3s linear infinite alternate;
}

@media (max-width: 767px) {
    .top-strip span {
        white-space: nowrap;
        animation: bounce 8s linear infinite alternate;
    }
}


@keyframes bounce {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw - 100%));
    }
}

/* Header / logo area */
.site-header {
    background-image: url('../../img/1-gif.gif');
    border-bottom: 3px solid #f2f2f2;
    padding: 12px 0;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

.navbar {
    background-color: rgb(225, 5, 5) !important;
}

.nav-item a {
    padding: 15px 30px !important;
}

.nav-link,
.nav-link:hover {
    color: rgba(255, 255, 255);
    font-weight: bold;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: rgb(225, 5, 5);
    background: #fcfcff;
}

/* Hero area with fireworks background - replace URL */
.hero {
    /* replace with real hero image */
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

@media (max-width: 767px) {
    .hero {
        min-height: 200px;
    }
}


/* .hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../../img/login-image.png');
    background-position: center !important;
} */

.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    margin: 0;
}

.hero p.lead {
    color: #ead9b7;
    margin-top: .6rem;
}

/* Feature Row */
.features-area {
    background: #cb6216;
    color: #fff;
    padding: 20px 0;
}

.feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.feature i {
    font-size: 26px;
    display: block;
    margin-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 350px;
        /* keeps it centered & neat */
    }

}

.counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.counter-box {
    flex: 1;
    margin: 10px;
}

.counter-box h2 {
    font-size: 48px;
    margin: 0;
    color: #f1c40f;
    /* Gold highlight */
}

.counter-box p {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 500;
}



/* Welcome section */
.welcome {
    padding: 60px 0;
}

.welcome .badge-graphic {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 20%, #ffcc33 0, #ff8a00 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Angled dark info strip */
.angled {
    background: linear-gradient(180deg, #1b1b1b, #151515);
    color: #fff;
    transform: skewY(-3deg);
    margin-bottom: 40px;
    padding: 40px 0;
}

.angled .inner {
    transform: skewY(3deg);
}

.angled .feature {
    color: #ddd
}

/* Products grid */
.products {
    padding: 60px 0;
}

.product-card {
    border: none;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    height: 100%;
}

.about-section {
    background: #f9f9f9;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-title span {
    color: #e10505;
}

.button-about {
    background: #e50914 !important;
    color: white;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.about-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.about-list li {
    font-size: 16px;
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}

.about-gif {
    background-image: url('../../img/about.gif')
}


#products {
    border: 60px solid transparent;
    padding: 10px;
    border-image: url('../../img/product.gif') 80 round;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #000;
    /* Black background */
    color: #ddd;
    font-size: 15px;
    position: relative;
    border-top: 3px solid #f5c518;
    /* Gold line on top */
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer p,
.footer a {
    color: #ccc;
}

.footer a:hover {
    color: #f5c518;
    /* Gold hover */
    text-decoration: none;
}

/* Social Buttons */
.footer .btn-square {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer .btn-square i {
    font-size: 16px;
}

.footer .btn-square:hover {
    background: #f5c518;
    color: #000;
}

/* Bottom Strip */
.footer .bg-secondary {
    background: #111 !important;
    font-size: 14px;
}

.footer .bg-secondary a {
    color: #f5c518;
    font-weight: 500;
}

.footer .bg-secondary a:hover {
    text-decoration: underline;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .footer .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

/* Floating Cart (Left) */
.floating-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #e50914;
    /* Red */
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
}

.floating-cart:hover {
    transform: scale(1.1);
}

/* Floating WhatsApp (Right) */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    /* WhatsApp green */
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}



.footer-topbar {
    font-size: 15px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.footer-topbar i {
    margin-right: 6px;
    font-size: 18px;
}

.footer-topbar span {
    margin: 0 12px;
    white-space: nowrap;
    /* prevents text from breaking mid-number/email */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-topbar .contact-info {
        text-align: left;
        /* left align for readability */
    }

    .footer-topbar span {
        display: block;
        margin: 8px 0;
    }
}


/* Small responsive tweaks */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 32px;
    }

    .welcome .badge-graphic {
        width: 160px;
        height: 160px;
    }
}

.floating-order {
  position: fixed;
  bottom: 115px;
  right: 20px;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  transition: 0.3s;
  animation: jump 1.5s infinite;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-8px);
  }
}
