/* FONT LOADING */
@font-face {
font-family: 'Montserrat';
src: url('../assets/fonts/Montserrat-Regular.woff') format('woff');
font-weight: 400;
}

@font-face {
font-family: 'Montserrat';
src: url('../assets/fonts/Montserrat-Medium.woff') format('woff');
font-weight: 500;
}

@font-face {
font-family: 'Montserrat';
src: url('../assets/fonts/Montserrat-Bold.woff') format('woff');
font-weight: 700;
}

@font-face {
font-family: 'Montserrat';
src: url('../assets/fonts/Montserrat-ExtraBold.woff') format('woff');
font-weight: 800;
}




/* GENERAL STYLES */
html {
overflow-y: scroll;
}

html, body {
margin: 0;
padding: 0;
height: 100%;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}

.container {
max-width: 1095px;
padding: 0 15px;
margin: 0 auto;
}

.page-content {
padding: 50px 15px;
text-align: center;
}

.margin-bottom-18 {
margin-bottom: 18px;
}

.left-align {
text-align: left;
}

.link {
color: #10ACCB;
text-decoration: none;
}

.subtitle {
font-weight: 400;
font-size: 28px;
line-height: 1.5;
}

p.text.privacy, p.text.contact {
margin-bottom: 3px;
}

.product-grid.advanced-series-grid {
    margin-top: 25px;
}
@media (max-width: 460px) {
.hero-title {
font-size: 39px;
}
.subtitle {
font-size: 23px;
}
}




/* HEADER STYLES */
header {
border-bottom: 1px solid #EDEDED;
}

header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 50px;
padding-bottom: 50px;
}

header .logo {
font-size: 26px;
font-weight: 800;
background: linear-gradient(135deg, #14646f 0%, #00e0ff 50%, #14646f 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-decoration: none;
}

header nav {
display: flex;
gap: 0;
}

header nav a {
font-size: 18px;
padding: 12px;
text-decoration: none;
color: #666;
}

header nav a.active {
/*font-weight: 700;*/
background: linear-gradient(135deg, #14646f 0%, #00e0ff 50%, #14646f 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
header .container {
flex-direction: column;
gap: 8px;
padding-bottom: 40px;
}
}




/* FOOTER STYLES */
footer {
border-top: 1px solid #EDEDED;
padding: 50px 0;
text-align: center;
}

footer p {
font-size: 16px;
}

footer .motto {
line-height: 1.4;
color: #303030;
}

footer .policies {
margin-top: 7px;
}

footer .copyright {
color: #303030;
margin-top: 7px;
}
@media (max-width: 460px) {
footer p { font-size: 15px; }
}




/* SEARCH STYLES */
#search {
width: 100%;
margin-top: 15px;
border-radius: 4px;
text-indent: 1px;
font-size: 16px;
padding: 11px;
border: 2px solid #d8d8d8;
color: #313131;
}

#search:focus {
    outline: none;
}

#search-results {
    position: relative;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute;
    width: 100%;
    z-index: 100;
}

#search-results:not(:empty) {
    display: block;
}

.search-item {
display: flex;
align-items: center;
padding: 10px;
text-decoration: none;
color: #10ACCB;
border-bottom: 1px solid #f0f0f0;
}

.search-item:hover {
background: #f9f9f9;
}

.search-item img {
width: 40px;
height: 40px;
border-radius: 4px;
margin-right: 10px;
}

.search-item span {
font-weight: 500;
}




/* HOMEPAGE STYLES */
.hero-title {
font-weight: 800;
font-size: 69px;
line-height: 1.1;
}

.hero-subtitle {
font-size: 20px;
margin-top: 15px;
line-height: 1.5;
color: #303030;
}

.btn {
display: block;
padding: 10px 15px;
font-size: 20px;
font-weight: 500;
margin-top: 18px;
text-decoration: none;
border-radius: 4px;
}

.btn-orange {
color: #e28327;
border: 1px solid #feba77;
}

.btn-blue {
color: #10ACCB;
border: 1px solid #10ACCB;
}

.product-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 15px;
margin-top: 35px;
}

.product-item {
position: relative;
display: block;
}

.product-item img {
width: 100%;
border-radius: 4px;
display: block;
}

.badge {
position: absolute;
padding: 2px 6px 3px 6px;
color: #fff;
font-weight: 700;
font-size: 12px;
}

.badge-new {
background: red;
border-bottom-right-radius: 10px;
border-top-left-radius: 4px;
top: 0;
left: 0;
font-size: 16px;
}

.badge-cart {
background: #04c8e3;
border-bottom-left-radius: 10px;
border-top-right-radius: 4px;
top: 0;
right: 0;
font-size: 16px;
}
@media (max-width: 460px) {
.badge-new, .badge-cart { font-size: 12px; }
}
@media (max-width: 480px) {
.product-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 481px) and (max-width: 768px) {
.product-grid {
grid-template-columns: repeat(4, 1fr);
}
}




/* PRODUCT STYLES */
.product-hero {
text-align: center;
}

.product-badges {
    margin-bottom: 10px;
}

.product-badge-new {
background: red;
color: #fff;
border-radius: 4px;
width: 60px;
margin: 0 auto 0 auto;
font-weight: 700;
padding: 3px 6px 3px 6px;
display: inline-block;
cursor: default;
}

.product-badge-advanced {
background: #FFD700;
color: #222;
border-radius: 4px;
width: 158px;
margin: 0 auto 0 auto;
font-weight: 700;
padding: 3px 6px 3px 6px;
display: inline-block;
cursor: default;
}

.product-badge-supreme {
background: linear-gradient(135deg, #14646f 0%, #00e0ff 50%, #14646f 100%);
color: #fff;
border-radius: 4px;
width: 100px;
margin: 0 auto 0 auto;
font-weight: 700;
padding: 3px 6px 3px 6px;
display: inline-block;
cursor: default;
}

.product-image {
width: 333px;
height: 333px;
border-radius: 4px;
margin-bottom: 15px;
}

.product-description {
font-weight: 400;
font-size: 28px;
line-height: 1.5;
margin-top: 3px;
color: #303030;
}

@media (max-width: 768px) { .product-description { font-size: 24px; } }

.btn-1 {
background: linear-gradient(135deg, #14646f 0%, #00e0ff 50%, #14646f 100%);
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: #fff;
padding: 25px 35px 25px 35px;
display: inline-block;
border-radius: 4px;
box-shadow: inset 0px 1px 1px rgb(255 255 255 / 16%), 0px 0px 0px 1px rgb(0 0 0 / 12%), 0px 2px 5px 0px rgb(0 0 0 / 12%);
text-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
text-align: center;
margin-top: 18px;
margin-bottom: 4px;
width: 100%;
}

.already-purchased {
opacity: 0.8;
cursor: default;
}

.product-instructions {
background: #bfe6ff5c;
padding: 50px 0;
}

.info-box {
border-radius: 4px;
padding: 10px 15px;
margin-bottom: 20px;
}

.info-box-advanced {
border: 2px solid #FFD700;
}

.info-box-supreme {
box-shadow: 0 0 0 3px #00dffd;
margin-top: 3px;
margin-right: 3px;
border: 3px solid #FFD700;
}

p.text {
line-height: 1.5;
font-size: 20px;
color: #303030;
margin: 0 0 1em 0;
}

.info-box p {
margin-bottom: 0;
}

ul.product {
padding-inline-start: 0;
}

ul.product li {
list-style: none;
margin-bottom: 5px;
line-height: 1.5;
font-size: 20px;
color: #303030;
}

ul.product li::before {
background: linear-gradient(135deg, #14646f 0%, #00e0ff 50%, #14646f 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
content: "\00BB";
font-size: 42px;
line-height: 0.9;
vertical-align: bottom;
margin-right: 6px;
font-weight: 700;
}



/* ADMIN STYLES */
.admin-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}

.admin-home-icon {
color: #fff;
font-size: 18px;
text-decoration: none;
}

.admin-sidebar {
width: 160px;
background: #10ACCB;
position: fixed;
top: 0;
left: 0;
bottom: 0;
padding: 0;
overflow-y: auto;
}

.admin-logo-top {
color: #fff;
font-size: 16px;
font-weight: 500;
text-decoration: none;
margin-bottom: 4px;
}

.admin-logo-top span {
font-size: 20px;
}

.admin-nav {
display: flex;
flex-direction: column;
}

.admin-nav a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
padding: 10px 15px 15px 15px;
font-size: 18px;
font-weight: 500;
}

.admin-nav a span {
font-weight: 700;
font-size: 25px;
}

.admin-nav a.active {
background: rgba(255,255,255,0.2);
color: #fff;
}

.admin-content {
margin-left: 160px;
padding: 30px;
background: #f5f5f5;
min-height: 100vh;
}

.admin-widget {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
max-width: 350px;
}

.admin-widget div {
padding: 5px 0 5px 10px;
border-bottom: 1px solid #e0e0e0;
margin-bottom: 10px;
}

.admin-widget h3 {
font-size: 14px;
color: #303030;
text-align: left;
font-weight: 400;
}

.widget-date,
.widget-label {
font-size: 13px;
color: #999;
margin: 0 0 8px;
line-height: 1.5;
text-align: center;
}

.widget-amount {
color: #303030;
font-size: 27px;
font-weight: 400;
margin: 0 0 16px;
line-height: 1;
text-align: center;
}

@media (max-width: 768px) {
.admin-sidebar {
width: 100%;
position: static;
padding: 0;
}

.admin-nav {
flex-direction: row;
overflow-x: auto;
}

.admin-nav a {
white-space: nowrap;
padding: 10px 20px 15px 20px;
}

.admin-content {
margin-left: 0;
margin-top: 0;
padding: 20px 15px;
}

.admin-widget {
max-width: 100%;
}
}




/* ADMIN - PRODUCTS STYLES */
.admin-page-title {
font-size: 32px;
font-weight: 700;
margin: 0 0 20px 0;
color: #303030;
}

.admin-toolbar {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.btn-admin {
background: #10ACCB;
color: #fff;
padding: 8px 16px;
border-radius: 4px;
text-decoration: none;
font-size: 14px;
font-weight: 500;
border: none;
cursor: pointer;
}

.product-count {
font-size: 14px;
color: #666;
}

.products-list {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
}

.product-row {
display: flex;
padding: 15px;
border-bottom: 1px solid #e0e0e0;
align-items: center;
}

.product-row:last-child {
border-bottom: none;
}

.product-thumb {
flex-shrink: 0;
}

.product-thumb img {
width: 30px;
height: 30px;
border-radius: 4px;
display: block;
}

.product-info {
flex: 1;
margin-left: 15px;
display: grid;
grid-template-columns: 1fr auto auto auto;
gap: 15px;
align-items: center;
}

.product-name {
color: #10ACCB;
text-decoration: none;
font-weight: 500;
}

.product-price,
.product-category,
.product-date {
font-size: 14px;
color: #666;
}




/* ADMIN - EDIT PRODUCT STYLES */
.product-form {
background: #fff;
padding: 20px;
border-radius: 4px;
max-width: 600px;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: #303030;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
outline: none;
}

label.checkbox-label {
display: block;
margin-bottom: 8px;
font-weight: 400;
}

.checkbox-label input {
margin-right: 8px;
}

.form-actions {
display: flex;
gap: 10px;
margin-top: 30px;
}

.btn-delete {
background: transparent;
border: 2px solid #dc3545;
font-weight: 500;
color: #dc3545;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}




/* CART STYLES */
.cart-info-box {
border: 1px solid #10ACCB;
color: #10ACCB;
border-radius: 4px;
padding: 10px 15px;
margin-bottom: 18px;
font-size: 20px;
text-align: left;
}

.cart-info-box a {
text-decoration: underline;
}

.cart-table {
width: 100%;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 40px;
}

.cart-table thead th {
text-align: left;
font-weight: 700;
padding: 15px 12px;
border-bottom: 1px solid #ddd;
}

.cart-table thead th:last-child {
text-align: right;
}

.cart-price {
font-weight: 400;
text-align: right;
}

.cart-product {
display: flex;
align-items: center;
gap: 12px;
}

.cart-remove {
color: #e70000;
font-size: 1.5em;
height: 1em;
width: 1em;
text-align: center;
line-height: 1;
border-radius: 100%;
font-weight: 700;
border: 0;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}

.cart-remove:hover {
background: #e70000;
color: #fff;
width: 24px;
height: 24px;
}

.cart-thumb {
width: 32px;
height: auto;
border-radius: 4px;
}

.cart-product-name {
color: #10ACCB;
font-size: 16px;
text-decoration: none;
}

.cart-total-section {
margin-left: auto;
max-width: 512px;
}

.cart-total-title {
font-size: 24px;
font-weight: 700;
margin: 0 0 15px 0;
text-align: left;
}

.cart-total-amount {
font-size: 16px;
font-weight: 400;
text-align: left;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
margin-bottom: 20px;
}

.btn-2 {
display: block;
background: transparent;
color: #10ACCB;
line-height: 1.3;
font-weight: 700;
text-decoration: none;
border: 3px solid #10ACCB;
border-radius: 4px;
text-align: center;
padding: 22px 0;
transition: all 0.2s;
}

@media (max-width: 768px) {
.cart-product {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.cart-table tbody td {
display: block;
padding: 10px 0;
}

.cart-table tbody td.cart-price {
text-align: left;
font-size: 14px;
}

.cart-total-section {
max-width: 100%;
}
.cart-total-title, .cart-total-amount {
text-align: center;   
}
.desktop-visible {
display: none;
}
}

@media (min-width: 768px) {
.mobile-visible {
display: none;
}
}

.cart-table.mobile-visible .cart-product-elements {
    padding-bottom: 4px;
}

.cart-table.mobile-visible .cart-product-elements div:nth-child(2) {
line-height: 1.8;
margin-top: -25px;
}

.cart-table.mobile-visible .cart-product-elements div:nth-child(3) {
text-align: right;
margin-top: -30px;
margin-right: 5px;
}
.cart-table.mobile-visible .cart-product-price div {
text-align: center;
}

.cart-table.mobile-visible tbody tr {
box-shadow: 0px 1px #ddd;
}

.cart-table.mobile-visible tbody tr:last-child {
box-shadow: none;
}

.cart-table.desktop-visible .cart-remove {
margin-right: 15px;
}

.cart-table.desktop-visible tbody td {
padding: 9px 10px;
vertical-align: middle;
border-bottom: 1px solid #ddd;
}

.cart-table.desktop-visible tbody tr:last-child td {
border-bottom: none;   
}

.cart-table.desktop-visible a:nth-child(2) {
    line-height: 0;
}

.cart-table.mobile-visible tbody td {
border-bottom: 1px solid #ddd;
}

.cart-table.mobile-visible tbody tr:last-child td:last-child {
border-bottom: none;   
}

.cart-table.mobile-visible {
border-top: 2px solid #ddd;
border-bottom: 2px solid #ddd;
}



/* FREE SAMPLE STYLES */
.free-sample-subtitle {
margin-top: 10px;
font-size: 48px;
line-height: 1.3;
color: #303030;
font-weight: 400;
text-align: center;
}

.free-sample-image {
margin-top: 31px;
border-radius: 4px;
width: 333px;
height: 333px;
display: block;
margin-left: auto;
margin-right: auto;
}

.free-sample-instructions {
background: #bfe6ff5c;
padding-top: 50px;
padding-bottom: 50px;
}

.free-sample-instructions h2 {
    margin-top: 0;
}

.free-sample-instructions-text {
margin-top: 20px;
}

.free-sample-instructions p:last-child {
    margin-bottom: 0;
}

.free-sample-buy-section {
padding: 50px 0;
}

.btn-free-sample-buy {
display: block;
background: transparent;
color: #10ACCB;
line-height: 1.3;
font-weight: 700;
text-decoration: none;
border: 3px solid #10ACCB;
border-radius: 4px;
text-align: center;
padding: 22px 0;
font-size: 22px;
transition: all 0.2s;
}

/* Waves Pulsator */
.sonar-wrapper {
position: relative;
z-index: 0;
overflow: visible;
}

.sonar-emitter {
position: relative;
margin: 32px auto;
width: 100px;
height: 100px;
border-radius: 9999px;
background-color: #00d074;
}

.sonar-wave {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 9999px;
background-color: #00d074;
opacity: 0;
z-index: -1;
pointer-events: none;
animation: sonarWave 2s linear infinite;
-webkit-animation: sonarWave 2s linear infinite;
}

@keyframes sonarWave {
from {
opacity: 0.4;
}
to {
transform: scale(3);
-webkit-transform: scale(3);
-ms-transform: scale(3);
opacity: 0;
}
}

@media (max-width: 460px) {
.hero-title {
font-size: 39px;
}

.free-sample-subtitle {
font-size: 31px;
margin-top: 7px;
}

.free-sample-image {
margin-top: 20px;
}
.sonar-emitter {
    margin-top: 0;
}
}




/* OPTIN POPUP STYLES */
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
justify-content: center;
align-items: center;
z-index: 9999;
}

.popup-content {
background: #fff;
padding: 25px;
border-radius: 8px;
position: relative;
max-width: 700px;
width: 96%;
}

#optin-form input[type="email"] {
width: 100%;
padding: 12px;
border-radius: 4px;
margin-bottom: 15px;
font-size: 16px;
border: 2px solid #ddd;
outline: none;
}
.btn-optin {
border: none;
cursor: pointer;
margin-top: 5px;
padding: 25px 0;
}



/* ADMIN - ORDERS STYLES */
.orders-list {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
}

.order-row {
display: flex;
padding: 15px;
border-bottom: 1px solid #e0e0e0;
}

.order-row:last-child {
border-bottom: none;
}
.orders-list .order-row {
    padding: 15px;
}
.order-info {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr 1fr 3fr 1fr;
gap: 15px;
align-items: center;
}

.order-name, .order-date, .order-products, .order-country {
color: #696969;
}
.orders-list .order-total { 
    font-weight: 400; 
    color: #696969; 
    padding: 0;
}
@media (max-width: 768px) {
.orders-list {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.order-row {
border-bottom: 1px solid #e0e0e0;
min-width: 800px;
}

.order-info {
min-width: 800px;
grid-template-columns: 2fr 2.5fr 1fr 2.5fr 2fr;
}
}




/* ADMIN - USERS STYLES */
.users-list {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 4px;
}

.user-row {
display: flex;
padding: 15px;
border-bottom: 1px solid #e0e0e0;
}

.user-row:last-child {
border-bottom: none;
}

.user-info {
flex: 1;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 15px;
align-items: center;
}

.user-name, .user-email, .user-country {
color: #696969;
}

@media (max-width: 768px) {
.users-list {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.user-row {
min-width: 600px;
}

.user-info {
min-width: 580px;
grid-template-columns: 1fr 2fr 1fr;
}
}




/* CHECKOUT STYLES */
#returning-customer {border-top-left-radius: 6px;border-top-right-radius: 6px;line-height: 1.5;background-color: #f7f7f7;border-top: 3px solid #00b8d2;padding: 15px;text-align: left;color:#303030;}
#returning-customer button { font-size: 16px; cursor: pointer; padding: 10px 20px; display: inline; margin-left: 10px;}
@media (max-width: 500px) { #returning-customer button { display: block; margin: 10px auto 0 auto; } #returning-customer { text-align: center; } }
.checkout-login-section {margin-bottom:30px;}
#login-form{border:2px solid #ddd;padding:20px;border-radius:6px;margin-top:10px;}
#login-form button { font-size: 16px; cursor: pointer; padding: 10px 40px; margin-top: 10px; }
@media (max-width: 630px) { .login-fields { flex-direction: column; } #login-form button { width: 100%; } }
.login-error{color:#e70000;margin-bottom:10px;}
.login-fields{display:flex;gap:10px;margin-bottom:10px;}
.login-fields input{flex:1;font-size:20px;color:#444;outline:none;padding:12px;border:2px solid #ddd;border-radius:6px;}
.checkout-section-title {font-size:29px;font-weight: 700;margin:30px 0 10px 0;text-align: left; color: #303030;}
.personal-details-form {max-width:600px;}
.personal-details-form input {width:100%;padding:15px;border:2px solid #ddd;border-radius:6px;margin-bottom:12px;font-size:20px;color:#444;outline:none;}
.personal-details-form input:focus {border-color:#10ACCB;}
#checkout-form input[type="text"],#checkout-form input[type="email"]{width:100%;padding:12px;border:2px solid #ddd;border-radius:6px;margin-bottom:10px;}
.personal-details-form input::placeholder { opacity: 0.7; }
#checkout-form p.text { text-align: left; }
.order-summary {border:1px solid #ddd;border-radius:6px;padding:0 2px 0 2px;margin-bottom:30px;}
.order-item {display:flex;justify-content:space-between;padding:15px 10px;border-bottom:1px solid #ddd; font-size: 16px;color:#303030;}
.order-item:last-of-type {border-bottom:none;}
.order-total {display:flex;justify-content:space-between;padding:15px 10px;font-size:16px;font-weight: 700;color:#303030;}
.order-total span { font-weight: 400; }
.checkout-policy {margin:20px 0;}
.payment-container {background:#bfe6ff5c;padding:20px;border-radius:6px;}
.payment-header {font-size:20px;margin-bottom:15px;text-align:left;color:#303030;}
.payment-header img {vertical-align:bottom;}
.payment-inner {background:#c8e7fb;padding:20px;border-radius:6px;position:relative;}
.payment-arrow {content:"";display:block;border:1em solid #c8e7fb;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-1em;left:50%;transform:translateX(-50%);}
.payment-security-banner {display:flex;justify-content:left;gap:10px;margin-bottom:10px;}
.payment-security-banner img {max-width:500px;}
@media (max-width: 768px) { .payment-security-banner img { max-width: 100%; } }
.payment-encryption {font-size:14px;color:#616161;text-align:left;margin-bottom:20px;}
.payment-inner label {display:block;margin:15px 0 5px 0;font-weight:400;text-align:left;color:#515151;font-size:18px;}
#card-number, #card-expiry, #card-cvc {padding:10px;border-radius:6px;border:1px solid #8cd2ff;box-shadow: 0 0 2px #787878;background: #fff;}
#card-number { margin-bottom: 10px; }
.images-card-number { position: relative; }
#lock-img-card-number { position:absolute; top: 5px; right: 40px; }
#card-img-card-number { position:absolute; top: 8px; right: 10px;width:30px;height:24px;}
.payment-row {display:grid;grid-template-columns:1fr 1fr;gap:15px;}
@media (max-width: 500px) { .payment-row { grid-template-columns: 1fr; } #card-number { margin-bottom: 15px; } }
.payment-col label {margin-top:0;}
.btn-place-order { width:100%; margin-top:20px;border:none;cursor:pointer;}
p.checkout-footer {margin-top:15px;}
.checkout-footer img { vertical-align: bottom; }




/* ACCOUNT STYLES */
.account-login-form{max-width:600px;margin:30px auto;border:2px solid #ddd;padding:30px;border-radius:6px;}
.account-login-fields{display:flex;gap:15px;margin-bottom:15px;}
.account-login-fields input{flex:1;font-size:20px;color:#444;outline:none;padding:15px;border:2px solid #ddd;border-radius:6px;width:100%;}
#account-login-btn{width:100%;font-weight:700;padding:10px;font-size:20px;cursor:pointer;}
#account-send-pass-btn { cursor:pointer; margin-top: 0;padding:10px;}
.forgot-link{display:block;text-align:center;margin-top:15px;color:#10ACCB;text-decoration:none;}
.forgot-form{display:none;max-width:600px;margin:20px auto;border:2px solid #ddd;padding:30px;border-radius:6px;}
.forgot-text{margin-bottom:15px;font-size:18px;color:#303030;line-height:1.3;}
.forgot-form input{width:100%;font-size:20px;color:#444;outline:none;padding:15px;border:2px solid #ddd;border-radius:6px;margin-bottom:15px;}
.forgot-form button{width:100%;font-weight:700;padding:15px;font-size:20px;}
.downloads-list{max-width:698px;margin:0 auto;display:flex;flex-direction:column;gap:15px;}
.download-btn{font-weight:500;padding:10px;font-size:20px;text-align:center;margin-top: 0;}
#account-login-success, #account-login-error { color:#10ACCB;margin:20px 0; }
@media (max-width: 768px) {
.account-login-fields{flex-direction:column;}
}



/* 404 NOT FOUND STYLES */
.notfound h2 { font-weight: 400; font-size: 48px; text-align: left; }
.notfound p { text-align: left; margin-bottom: 15px; }
.notfound ul { padding-inline-start: 22px; }
.notfound li { margin-bottom: 5px; line-height: 1.5; font-size: 20px; color: #303030; text-align: left; }
@media (max-width: 768px) { .notfound h2 { font-size: 31px; } }

