/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 03 2026 | 13:35:42 */
.hero-section {
    padding: 20px 20px!important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    /*background: radial-gradient(circle, rgba(10, 84, 79, 0.08) 0%, transparent 60%);*/
    pointer-events: none;
    filter: blur(60px);
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0A544F;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: #E0ECEC!important;
    border-radius: 50px;
    border: 1px solid rgba(10, 84, 79, 0.2);
}

.hero-title {
    font-size: 45px !important;
    font-weight: 900!important;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1;
}

.discount-highlight {
    color: #0A544F;
    font-weight: 800 !important;
    display: inline-block;
}

.hero-text {
    font-size: 18px;
    color: #7A7A7A!important;
    margin-bottom: 32px!important;
    max-width: 500px;
    line-height: 1.1;

}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: #0A544F;
    color: #ffffff!important;
    border-color: #0A544F;
    box-shadow: 0 8px 25px rgba(10, 84, 79, 0.3);
}

.hero-btn-primary:hover {
    background: transparent;
    color: #0A544F!important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 84, 79, 0.4);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-secondary {
    background: #ffffff;
    color: #0A544F;
    border-color: rgba(10, 84, 79, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-btn-secondary:hover {
    background: #F1F4F4;
    border-color: rgba(10, 84, 79, 0.5);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /*box-shadow: 0 30px 80px rgba(10, 84, 79, 0.2);*/
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover .hero-image img {
    transform: scale(1.05);
}

.hero-status-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(10, 84, 79, 0.1);
}

.status-icon {
    width: 36px;
    height: 36px;
    background: rgba(10, 84, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A544F;
    font-size: 18px;
    flex-shrink: 0;
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-label {
    font-size: 10px;
    color: #7A7A7A;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 700;
}



@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px!important;
		word-break: break-word;
		overflow-wrap: break-word;
		white-space: normal;
	}
    
    .hero-text {
        margin: 0 auto 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .hero-status-badge {
        bottom: 16px;
        left: 16px;
        padding: 12px 16px;
    }
    
    .status-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .status-label {
        font-size: 9px;
    }
    
    .status-value {
        font-size: 13px;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
}
