:root {
    --primary: #F37A1F; /* Theme Orange */
    --primary-light: #f5984f;
    --primary-dark: #d9650d;
    --secondary: #FFF5EB; /* Very light orange-grey */
    --dark: #272727; /* Deep Grey from target site */
    --light: #F9F9F9; /* Off-white background from target site */
    --accent: #EBD0B0; /* Beige accent */
    --radius-lg: 35px; /* Large modern rounded corners */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

/* Bootstrap Color Overrides */
.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #F37A1F, #EBD0B0);
    z-index: 1100;
    position: relative;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

#timer {
    font-family: monospace;
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.navbar {
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    top: 40px; /* Adjust for announcement bar */
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    top: 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s;
}

.nav-link {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--dark) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(243, 122, 31, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 122, 31, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid #ddd;
    border-radius: var(--radius-lg);
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    z-index: 2;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--dark);
    letter-spacing: -2px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-img-wrap {
    position: relative;
    z-index: 1;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    bottom: 40px;
    left: -40px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.badge-text h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #888;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Features */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.feature-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transform: translateY(-12px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Product Details */
.product-details {
    padding: 100px 0;
}

.gallery-main {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
}

.thumb-img {
    width: calc(33.333% - 0.66rem);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.6;
}

.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

.old-price {
    font-size: 1.5rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 1rem;
    font-weight: 400;
}

/* Step Card */
.step-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.step-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.step-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto;
    position: relative;
}

.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid white;
}

/* Custom 5 column grid */
@media (min-width: 1200px) {
    .col-lg-2-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Video Showcase Section */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.3);
}

.video-bg {
    position: relative;
    z-index: 1;
    transform: scale(1.05);
    transition: all 5s ease;
}

.video-container:hover .video-bg {
    transform: scale(1);
}
/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: white;
}

.review-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Instagram Section */
.insta-item {
    transition: transform 0.4s ease;
}

.insta-item:hover {
    transform: scale(0.98);
}

.insta-overlay {
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: all 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item img {
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 100px 0 40px;
    border-radius: 60px 60px 0 0;
    margin-top: 80px;
}

.footer-brand {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-text {
    color: #999;
    margin-bottom: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero { text-align: center; padding-top: 120px; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .hero-img-wrap { margin-top: 3rem; }
    .floating-badge { left: 10px; bottom: 20px; }
    .step-connector { display: none; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    z-index: 1050;
    border-radius: 20px 20px 0 0;
    padding: 0.7rem 0;
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
}

.nav-items-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a0a0a0;
    font-size: 0.65rem;
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
}

.nav-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.nav-item.active, .nav-item:hover {
    color: var(--primary);
}

.nav-item.active i, .nav-item:hover i {
    transform: translateY(-2px);
}

.center-btn-wrap {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    top: -28px;
}

.center-btn {
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 0 6px rgba(140, 106, 93, 0.15);
    border: 4px solid white;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}

.center-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 0 8px rgba(140, 106, 93, 0.2);
}

/* Add padding to body for mobile devices to prevent content hiding behind the menu */
@media (max-width: 991px) {
    body {
        padding-bottom: 90px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensure it stays above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes float-wa {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .whatsapp-float {
        bottom: 110px; /* Higher for mobile menu */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}




