﻿
/* CSS Custom Properties - Theme Variables */
:root {
    --base-color-lighter10: #EEF8EC;
    --base-color-lighter9: #DDF1DA;
    --base-color-lighter8: #CCE9C8;
    --base-color-lighter7: #BAE2B6;
    --base-color-lighter6: #A9DAA4;
    --base-color-lighter5: #97D392;
    --base-color-lighter4: #84CB81;
    --base-color-lighter3: #71C46F;
    --base-color-lighter2: #5DBC5D;
    --base-color-lighter1: #45B44B;
    --base-color: #25AC38;
    --base-color-darker1: #259B34;
    --base-color-darker2: #258A30;
    --base-color-darker3: #247A2C;
    --base-color-darker4: #236A27;
    --base-color-darker5: #205B23;
    --base-color-darker6: #1E4C1F;
    --base-color-darker7: #1B3D1B;
    --base-color-darker8: #172F16;
    --base-color-darker9: #132111;
    --base-color-darker10: #0C150A;
    --tones-base-color: #25AC38;
    --tones-base-color-darker1: #39A841;
    --tones-base-color-darker2: #46A44A;
    --tones-base-color-darker3: #51A051;
    --tones-base-color-darker4: #5B9B59;
    --tones-base-color-darker5: #639760;
    --tones-base-color-darker6: #6A9366;
    --tones-base-color-darker7: #708E6D;
    --tones-base-color-darker8: #768A73;
    --tones-base-color-darker9: #7B857A;
    --tones-base-color-darker10: #808080;

    --eco-green: #25AC38;
    --eco-green-dark: #258A30;

    --white: #fff;
    --black: #000;
    --body: #f8f9fa;
    --divider: #ddd;
    --blox-line: #ccc;
    --placeholder: #0a0a0a; /*3a4f6e;*/
    --xlarge-text: 26px;
    --large-text: 22px;
    --medium-text: 18px;
    --small-text: 14px;
    --xsmall-text: 10px;
    /*--primary-color: #25ac38;
    --primary-dark: #1d8a2c;
    --primary-light: #32d647;
    --primary-glow: rgba(37, 172, 56, 0.15);
    --secondary-color: #0ea5e9; */
    /* Pearly White Theme Colors */
    /*--background-main: #f8f9fa;
    --background-pearl: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f4f8 100%);
    --background-card: #ffffff;
    --background-hover: #f1f5f9;
    --background-header: rgba(255, 255, 255, 0.95); */
    /* Text Colors */
    /*--text-primary: #041507;
    --text-secondary: #64748b;
    --text-muted: #94a3b8; */
    /* Border & Shadow */
    /*--border-color: #e2e8f0;
    --border-accent: rgba(37, 172, 56, 0.2);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px var(--primary-glow); */
    /*--transition-speed: 0.3s; */
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
    width: 100%;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background: #eee;
}

.fas {
    width: 32px;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background: linear-gradient(-69deg, #AC2587, #044f76, #5C9D6D, #0A3413);*/
    background: linear-gradient(-69deg, #AC2587, #044f76, #0A3413);
    background-size: 400% 400%;
    animation: gradient 13s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.box {
    position: relative;
    .square

{
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    animation: square 10s linear infinite;
    animation-delay: calc(-1s * var(--i));
}

@keyframes square {
    0%,100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }
}

}

.container {
    position: relative;
    padding: 50px;
    width: 260px;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

    .container::after {
        content: '';
        position: absolute;
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
        border-radius: 5px;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 2% );
    }

.form {
    position: relative;
    width: 100%;
    height: 100%;
    h2

{
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.inputBx {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    input

{
    width: 80%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 10px;
    padding-left: 40px;
    border-radius: 13px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.password-control {
    position: absolute;
    top: 11px;
    right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(https://snipp.ru/demo/495/view.svg) 0 0 no-repeat;
    transition: 0.5s;
}

.view {
    background: url(https://snipp.ru/demo/495/no-view.svg) 0 0 no-repeat;
    transition: 0.5s;
}



.fas {
    position: absolute;
    top: 13px;
    left: 13px;
}

input[type="submit"] {
    background: #000;
    color: #fff;
    max-width: 100px;
    padding: 8px 10px;
    box-shadow: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 1.5s;
}

    input[type="submit"]:hover {
        background: linear-gradient(115deg, rgba(0,0,0,0.10), rgba(255,255,255,0.25));
        color: #fff;
        transition: .5s;
    }


span {
    position: absolute;
    left: 30px;
    padding: 10px;
    display: inline-block;
    color: #fff;
    transition: .5s;
    pointer-events: none;
}

input:focus ~ span,
input:valid ~ span {
    transform: translateX(-30px) translateY(-25px);
    font-size: 12px;
}

}

p {
    color: #fff;
    font-size: 15px;
    margin-top: 5px;
    a

{
    color: #fff;
}

a:hover {
    background-color: #000;
    background-image: linear-gradient(to right, #434343 0%, black 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

}
}




/* Setup Begin */

main {
    display: block;
}

table {
    border: 0;
    border-spacing: 0;
}

.center-table {
    margin-left: auto;
    margin-right: auto;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

a {
    text-decoration: none;
    background-color: transparent;
}

img {
    border-style: none;
}

input, textarea, select {
    outline: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
}

sup {
    font-size: 9px;
}
/* Setup End*/

/* Site Specific */

.header {
    padding: 10px 20px 0px 20px;
    background-color: var(--body);
    border-bottom: 2px inset #eee;
}

#navbar {
    position: sticky;
    top: 0;
    padding: 10px;
    margin: 0px 3px;
    background-color: var(--body);
    /*border-radius: 0px 0px 13px 13px;*/
    box-shadow: 1px 1px 4px #ccc;
    z-index: 999;
}

.dropdown {
    padding: 5px 20px 5px 20px;
    border-radius: 13px;
}

.selected {
    color: var(--white);
    background-color: var(--base-color-lighter4);
}


.dropdown:hover {
    color: var(--base-color);
    background-color: var(--base-color-lighter8);
    cursor: pointer;
}

    .dropdown:hover .dropdown-content {
        display: block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    color: #000;
    font-size: 14px;
    background-color: #fff;
    min-width: 210px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 13px;
}

    .dropdown-content a {
        display: block;
        float: none;
        color: black;
        padding: 12px 20px;
        text-decoration: none;
        text-align: left;
    }

        .dropdown-content a:hover {
            color: var(--base-color-lighter1);
            background-color: var(--base-color-lighter8);
        }




.blox {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin: 0;
    background: var(--white);
    /*background: var(--base-color-lighter10);*/
    border-radius: 13px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.blox-dashboard {
    min-width: 300px;
    min-height: 100px;
    height: auto;
    width: auto;
}


.button {
    border-radius: 13px;
    text-align: center;
    cursor: pointer;
}


.button-medium {
    height: 34px;
    font-size: 20px;
}

.button-small {
    height: 24px;
    font-size: 14px;
}


.white {
    color: #fff !important;
}

.gray {
    color: #ccc !important;
}

.darkgray {
    color: #b2b2b2 !important;
}



.white-background {
    background: #fff !important;
}

.gray-background {
    background: #ccc !important;
}

.darkgray-background {
    background: #b2b2b2 !important;
}

.green-background {
    background: var(--base-color-lighter5) !important;
}

.footer-background {
    background: var(--base-color-darker5) !important;
}


.xlarge-text {
    font-size: var(--xlarge-text);
}

.large-text {
    font-size: var(--large-text);
}

.medium-text {
    font-size: var(--medium-text);
}

.small-text {
    font-size: var(--small-text);
}

.xsmall-text {
    font-size: var(--xsmall-text);
}

input[type=text], input[type=password], input[type=checkbox], textarea, select {
    border-radius: 6px;
    border: 1px solid transparent;
    border-top: none;
    border-bottom: 1px solid #DDD;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
}

input[type=text], input[type=password] {
    height: 18px;
    width: 400px;
    padding: 8px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--placeholder);
    opacity: .4;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--placeholder);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--placeholder);
}

.input-text-xsmall {
    height: 12px !important;
    width: 45px !important;
    padding: 8px !important;
    font-size: 13px;
}


.dashboard-field {
    font-size: 13px;
    border-top: 1px solid var(--blox-line);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    white-space: nowrap;
    /*vertical-align: top;*/
}

.dashboard-field-allow-wrap {
    font-size: 12px;
    border-top: 1px solid var(--blox-line);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    line-height: 17px;
}

.dashboard-label {
    font-size: 15px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom:5px;
}

.dashboard-label:hover {
    cursor: pointer;
}

.dashboard-field-small {
    font-size: 13px;
    border-top: 1px solid var(--blox-line);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 14px;
    white-space: nowrap;
}

.dashboard-field-smaller {
    font-size: 12px;
    border-top: 1px solid var(--blox-line);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 12px;
    white-space: nowrap;
}


.tablerow {
    background-color: transparent;
}

.tablerowhover {
    background-color: var(--base-color-lighter10);
}



#scroll-top-button {
    display: none;
    position: fixed;
    bottom: 35px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: var(--base-color-lighter5);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 13px;
    opacity: .9;
}

    #scroll-top-button:hover {
        background-color: var(--base-color-lighter1);
        font-weight: 900;
    }

#footer-div {
    height: 18px;
    position: fixed;
    bottom: 0%;
    width: 100%;
    z-index: 9999;
}



/* === CATALOG CARDS === */
.catalogs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 40px 64px;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: linear-gradient(160deg, #ffffff 0%, #f0f9f1 45%, #eef4fb 100%);
    border-radius: 12px;
    padding: 32px 24px 28px;
    border: 1px solid rgba(76, 175, 80, 0.22);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

    .catalog-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(76, 175, 80, 0.4);
    }

.catalog-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--eco-green-pale);
}

    .catalog-icon svg {
        width: 26px;
        height: 26px;
        fill: var(--eco-green-dark);
    }

.catalog-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.catalog-card .catalog-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 4px;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 600;
    background: var(--eco-green-pale);
    color: var(--eco-green-dark);
    transition: background 0.2s, gap 0.2s;
}

.catalog-card:hover .catalog-badge {
    background: rgba(76, 175, 80, 0.15);
    gap: 8px;
}

.catalog-badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalog-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
}

    .catalog-tag.specialty {
        background: rgba(168, 85, 247, 0.08);
        color: #8B5CF6;
    }



#productdetailoverlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .5); /*0,0,69,.5*/
}


.productdetail {
    position: fixed;
    z-index: 9999;
    width: 1100px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: var(--border-radius);
}
