html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

h1, h2, p, small {
    font-family: 'League Spartan', sans-serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    color: #000;
}

h1 {
    font-size: 21px;
}

h2 {
    font-size: 19px;
}

p {
    font-size: 17px;
}

small {
    font-size: 13px;
}

.button {
    background: #00aff0;
    color: #000;
    padding: 20px;
    border-radius: 5px;
    margin: 10px auto;
    transition: background 0.3s, color 0.3s;
}

.button:hover {
    background: #008ccf;
}

a {
    font-family: 'League Spartan', sans-serif;
    text-decoration: none;
    color: #00aff0;
}

a:hover {
    color: #008ccf;
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    background: none;
}

.social-spacing {
    margin: 0 2px;
    white-space: nowrap;
    line-height: 1.5;
}

.social-spacing:hover {
    opacity: 0.5;
}

.social-spacing img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clear {
    clear: both;
}

.avy {
    width: 100px;
    height: 100px;
}

.avy:hover {
    opacity: 0.5;
}

.round {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-appearance: none;
}

.underline:hover {
    border-bottom: 1px solid #000;
}

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

.white {
    color: #fff;
}

.divider {
    border-bottom: 1px solid #eee;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-15 {
    padding-top: 15px;
}

.sale-button {
    position: relative;
    display: block;
}

.sale-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: auto;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.lightbox-image {
    width: 100%;
    height: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#lightbox {
    display: none;
}

.warning-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.warning-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.warning-box button {
    background: #00aff0;
    color: #000;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.warning-box button:hover {
    background: #008ccf;
}

.testimonials {
    width: 100%;
    max-width: 600px;
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-left: 5px solid #00aff0;
    background: #f2f2f2;
    border-radius: 10px;
}

.testimonial:hover {
   border-left: 5px solid #008ccf;
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial .author {
    font-family: 'League Spartan', sans-serif;
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
}

.testimonial:last-child {
    margin-bottom: 0;
}