body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    background: #f7f7f7;
        }
		

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.mobile-bottom-nav,
.mobile-full-menu {
    background: var(--theme-color) !important;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important;
	
}


.site-header .logo,
.site-header .main-nav a {
    color: #fff;
}

       
.nav-wrap {
   max-width: 1200px;
   margin: 12px auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;

 }

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
        }

.logo span {
   color: #6F9940;
        }
		
/* active page button */

.main-nav a.active {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 24px;
}

.main-nav a {
	color: #fff !important;
    padding: 9px 15px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    transition: background 0.25s ease;
    
}

.main-nav a:hover {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 24px;
}

.hero-slider {
    position: relative;
	min-height: 920px;
	overflow: hidden;
	
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    min-height: 920px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    color: #fff;
}

.hero-content.text-center {
    text-align: center;
}



.hero-content.text-left {
            text-align: left;
        }

.hero-content.text-right {
            text-align: right;
        }

.hero-content h1 {
            font-size: 58px;
            margin-bottom: 15px;
           
        }

.hero-content h3 {
            font-size: 26px;
            margin-bottom: 25px;
          
        }

.hero-btn {
   display: inline-block;
   color: #fff;
   text-decoration: none;
   padding: 14px 24px;
   border-radius: 10px;
   font-weight: bold;
        }


@media (max-width: 768px) {
.hero-slider,
.hero-slide {
  min-height: 540px;
}

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

.hero-content h3 {
  font-size: 20px;
    }
}

.btn-palm-leaf { background: #6F9940; }
.btn-jungle-beat { background: #2f5f2f; }
.btn-primary { background: #2f80ed; }
.btn-secondary { background: #666; }

.intro-section {
            background: #fff;
            padding: 60px 20px;
            text-align: center;
        }

.intro-section .inner {
            max-width: 900px;
            margin: 0 auto;
        }

.intro-section h2 {
            font-size: 36px;
            margin: 0 0 15px;
        }

.intro-section p {
            font-size: 18px;
            color: #555;
            line-height: 1.7;
        }

.footer {
	background: var(--footer-color) !important;
    color: #ddd;
    padding: 45px 20px 20px;

}

.footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }

.footer h3,
.footer h4 {
            color: #fff;
            margin-top: 0;
        }

.footer a {
            color: #ddd;
            display: block;
            text-decoration: none;
            margin-bottom: 8px;
        }

.footer a:hover {
            color: #6F9940;
        }

.footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 18px;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 14px;
            color: #999;
        }

@media (max-width: 768px) {
.nav-wrap {
                flex-direction: column;
            }

.main-nav a {
                margin: 0 8px;
            }

.hero-slide {
                min-height: 580px;
            }

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

.hero-content h3 {
                font-size: 20px;
            }

.footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
		
.mobile-bottom-nav,
.mobile-full-menu {
    display: none;
	
}

@media (max-width: 768px) {
    .site-header {
        padding: 14px 16px;
    }

    .nav-wrap {
        flex-direction: row;
        justify-content: center;
    }

    .main-nav {
        display: none;
    }

    .logo {
        font-size: 21px;
        text-align: center;
    }

    body {
        padding-bottom: 78px;
    }

.mobile-bottom-nav {
        position: fixed;
		align-items: center;
        left: 0;
        right: 0;
        bottom: 0;
        height: 78px;
        background: var(--theme-color) !important;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        z-index: 9998;
        box-shadow: 0 -5px 18px rgba(0,0,0,0.25);
    }

.mobile-nav-item {
        color: #fff;
        text-decoration: none;
        border: none;
        background: transparent;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
		padding: 6px 4px; /* 👈 THIS MAKES THE BOX LOOK GOOD */
		transition: all 0.2s ease;
    }

.mobile-nav-item i {
        font-size: 32px;
        line-height: 1;
    }

.mobile-nav-item:hover,
.mobile-nav-item:focus,
.mobile-nav-item.active {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
    border-radius: 10px;
}


.mobile-full-menu {
    position: fixed;
    inset: 0;
    background: var(--theme-color) !important;
    z-index: 99999;
    color: #fff;
    padding: 25px;
}


.mobile-full-menu.active {
        display: block;
    }

.mobile-menu-close {
        position: absolute;
        top: 18px;
        right: 20px;
        background: transparent;
        color: #fff;
        border: none;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        text-align: center;
    }

.mobile-menu-close span {
        display: block;
        font-size: 34px;
        line-height: 1;
    }

.mobile-full-menu-inner {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

.mobile-full-menu-inner h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #fff;
}

.mobile-full-menu-inner a {
    color: #fff;
    background: rgba(255,255,255,0.10);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 14px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.mobile-full-menu-inner a:hover {
    background: rgba(255,255,255,0.22);
}

body.mobile-menu-opened {
        overflow: hidden;
    }
}



.mobile-nav-item.active i {
    color: #fff;
}

.page-hero {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 120px 20px 70px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 20px;
}

@media (max-width: 768px) {

    /* SHOP + ABOUT TOP HEADER */
    .page-hero {
        min-height: 140px !important;
        height: 140px !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .page-hero-content {
        padding: 95px 18px 28px !important;
        text-align: center !important;
    }

    .page-hero-content h1 {
        font-size: 38px !important;
        margin-bottom: 12px !important;
    }

    .page-hero-content p {
        font-size: 22px !important;
    }

    /* HOMEPAGE CAROUSEL DOTS */
    .gecko-carousel-dots {
        gap: 12px !important;
        margin-top: 18px !important;
    }

    .gecko-dot {
        width: 17px !important;
        height: 17px !important;
        border-radius: 50% !important;
    }

}


/* CONTACT PAGE */

.contact-section {
    padding: 80px 20px;
    background: #f7f7f7;
}

.contact-wrap {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.contact-wrap h2 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 36px;
    color: #222;
}

.contact-form label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    background: #fafafa;
    transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6F9940;
    box-shadow: 0 0 0 3px rgba(111,153,64,.15);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-submit {
    display: block;
    width: 320px;
    margin: 30px auto 0;
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    background: #111111;
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(0,0,0,0.18);
    transition: .25s ease;
}


.contact-submit:hover {
	background: #333333;
    transform: translateY(-2px);
}

.contact-success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 13px;
	margin-top: 20px;
    margin-bottom: 0;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.contact-error {
    background: #f8d7da;
    color: #842029;
    padding: 13px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    font-weight: bold;
}

#contact-message {
    scroll-margin-top: 70vh;
}

@media (max-width: 768px) {
    #contact-message {
        scroll-margin-top: 500px;
    }
}

@media (max-width:768px){

    .contact-submit{
        width:100%;
		max-width:100% !important;
        padding:22px 20px !important;
        font-size:28px !important;
        border-radius:16px !important;
        margin-top:35px !important;
    }

}

@media (max-width:768px){

    .contact-section{
        padding:50px 14px;
    }

    .contact-wrap{
        padding:25px;
        border-radius:18px;
    }

    .contact-wrap h2{
        font-size:28px;
    }
}
