/* Base & Utilities */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDFCF8;
}
::-webkit-scrollbar-thumb {
    background: #a8c7a8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2d6a4f;
}

/* Geo Shapes */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border: 3px solid #FFD166;
    border-radius: 50%;
    top: 15%;
    left: 8%;
    animation: float1 8s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: #FFD166;
    border-radius: 50%;
    top: 60%;
    left: 15%;
    animation: float2 6s ease-in-out infinite;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid #A8C7A8;
    top: 20%;
    right: 10%;
    animation: rotate1 12s linear infinite;
}

.square-1 {
    width: 60px;
    height: 60px;
    background: #F4845F;
    border-radius: 12px;
    top: 70%;
    right: 18%;
    animation: float3 7s ease-in-out infinite;
}

.triangle-2 {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid #7AAB7A;
    bottom: 20%;
    left: 25%;
    animation: rotate2 10s linear infinite;
}

.circle-3 {
    width: 50px;
    height: 50px;
    border: 3px solid #7AAB7A;
    border-radius: 50%;
    top: 40%;
    right: 30%;
    animation: float1 9s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(15deg); }
}

@keyframes rotate1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate2 {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Marquee */
.marquee-track {
    animation: marquee 30s linear infinite;
}

.marquee-content {
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navbar */
#navbar.scrolled {
    background: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

/* Mobile Menu */
#mobileMenu.open {
    opacity: 1;
    pointer-events: all;
}

#mobileMenu.closed {
    opacity: 0;
    pointer-events: none;
}

.menu-line.active:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-line.active:nth-child(2) {
    opacity: 0;
}
.menu-line.active:nth-child(3) {
    width: 1.5rem;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Product Cards */
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }

/* Focus styles */
input:focus, textarea:focus {
    outline: none;
}

/* Selection */
::selection {
    background: #2d6a4f;
    color: #FDFCF8;
}
