﻿/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
:root {
    --input-color: #336010;
    --input-border: #8995a9 ;
    --input-background: #fff;
    --input-placeholder: #cbd1dc;
    --input-border-focus: #275efe;
    --group-color: var(--input-color);
    --group-border: var(--input-border);
    --group-background: #eef4ff;
    --group-color-focus: #fff;
    --group-border-focus: var(--input-border-focus);
    --group-background-focus: #678efe;
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.form-field {
    display: block;
    width: 100%;
    padding: 8px 16px;
    line-height: 25px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    border-radius: 6px;
    -webkit-appearance: none;
    color: var(--input-color);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    transition: border 0.3s ease;
}

    .form-field::-moz-placeholder {
        color: var(--input-placeholder);
    }

    .form-field:-ms-input-placeholder {
        color: var(--input-placeholder);
    }

    .form-field::placeholder {
        color: var(--input-placeholder);
    }

    .form-field:focus {
        outline: none;
        border-color: var(--input-border-focus);
    }

.form-group {
    position: relative;
    display: flex;
    width: 100%;
}

    .form-group > span,
    .form-group .form-field {
        white-space: nowrap;
        display: block;
    }

        .form-group > span:not(:first-child):not(:last-child),
        .form-group .form-field:not(:first-child):not(:last-child) {
            border-radius: 0;
        }

        .form-group > span:first-child,
        .form-group .form-field:first-child {
            border-radius: 6px 0 0 6px;
        }

        .form-group > span:last-child,
        .form-group .form-field:last-child {
            border-radius: 0 6px 6px 0;
        }

        .form-group > span:not(:first-child),
        .form-group .form-field:not(:first-child) {
            margin-left: -1px;
        }

    .form-group .form-field {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        width: 1%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .form-group > span {
        text-align: center;
        padding: 8px 12px;
        font-size: 14px;
        line-height: 25px;
        color: var(--group-color);
        background: var(--group-background);
        border: 1px solid var(--group-border);
        transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
    }

    .form-group:focus-within > span {
        color: var(--group-color-focus);
        background: var(--group-background-focus);
        border-color: var(--group-border-focus);
    }




        .form-group:not(:last-child) {
            margin-bottom: 32px;
        }

.body-content {
    margin-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
}
    .body-content .form-group {
        max-width: 360px;
    }
/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

.inp {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 280px;
    height: 53px;
}

    .inp .border {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 18px;
        fill: none;
    }

        .inp .border path {
            stroke: #c8ccd4;
            stroke-width: 2;
        }

            .inp .border path d {
                transition: all 0.2s ease;
            }

    .inp .check {
        position: absolute;
        top: 20px;
        right: 20px;
        fill: none;
        transform: translate(0, 9px) scale(0);
        transition: all 0.3s cubic-bezier(0.5, 0.9, 0.25, 1.3);
        transition-delay: 0.15s;
    }

        .inp .check path {
            stroke: #07f;
            stroke-width: 2;
        }

    .inp input {
        -webkit-appearance: none;
        width: 100%;
        border: 0;
        font-family: inherit;
        padding: 0;
        height: 48px;
        font-size: 16px;
        font-weight: 500;
        background: none;
        border-radius: 0;
        color: #223254;
        transition: all 0.15s ease;
    }

        .inp input:focus {
            outline: none;
        }

            .inp input:focus + .border path {
                stroke: #07f;
            }

        .inp input:valid + .border path {
            animation: elasticInput 0.8s ease forwards;
        }

        .inp input:valid + .border + .check {
            transform: translate(0, 0) scale(1);
        }

::placeholder {
    color: #9098a9;
}

@-moz-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }

    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}

@-webkit-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }

    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}

@-o-keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }

    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}

@keyframes elasticInput {
    33% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,1 253,1 C261,1 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }

    66% {
        d: path("M0,12 L226,12 C220,12 220.666667,12 228,12 C239,12 245,17 253,17 C261,17 268,12 278,12 C284.666667,12 285.333333,12 280,12");
    }
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
.admin-dashboard {
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}



body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

.header-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    color: #242424;
    padding: 1rem 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background: #f9f9f9;
    color: #242424;
    padding: 1rem 2rem;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 5px;
}

header h1 a {
    all: unset;
    cursor: pointer;
    font-size: 2.2rem;
    color: #068423;
}
    header h1 {
    font-size: 2.2rem;
    color: #068423;
    margin-left:0px;
    text-align:justify-all;
   padding-top:5px;
   padding-left:0px;
}
        header h1 .logo {
            background-image: url('images/ic_launcher.png');
            background-repeat: no-repeat;
            background-position-x: left;
            background-position-y: center;
            width: 50px;
            height: 50px;
            float: left;
            border-radius: 8px;
            background-size: cover;
        }

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
}
.top-right-icons {
    position: absolute;
    top: 20px;
    right: 30px;
    display:flex;
    gap: 15px;
}

.float-right-icons {
    position: absolute;
    display:inline-block;
    gap: 15px;
}


.float-right-icons .float-dropdown-content {
    position: absolute;
    display: block;
    right: 0;
    background: #fff;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 9999;
    display: none;
}

.float-dropdown-header {
    padding: 10px;
    font-weight: bold;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.float-dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.float-dropdown-content li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    cursor: default;
}

    .float-dropdown-content li:hover {
        background-color: #f0f0f0;
    }




.material-icons {
    font-size: 24px;
    color: #333;
}


.cta {
    background: white;
    color: #4CAF50;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 2rem;
    background: #e8f5e9;
}

    .hero img {
        max-width: 100%;
        height: auto;
    }

section {
    /*padding: 2rem;*/
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.deals ul, .new-arrivals ul {
    list-style: none;
    padding: 0;
}

.testimonials blockquote {
    font-style: italic;
    background: #fff3e0;
    padding: 1rem;
    border-left: 5px solid #ff9800;
}

footer {
    background: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

    footer a {
        color: #ffeb3b;
        margin: 0 0.5rem;
    }








header input {
    border: 1px solid #ccc;
    font-size: 12px;
    height: 30px;
    padding: 4px 8px;
    position: absolute;
    width: 50%;
}

    header input:focus {
        outline: none;
    }



    header button:focus {
        outline: none;
    }

    button.btn-search, button.btn-reset {
        background: green;
        border: none;
        height: 30px;
        font-size: 12px;
        padding: 4px;
        position: absolute;
        width: 30px;
        margin-top:0px;
        
    }

.sample {
    float: left;
    height: 50px;
    margin: 0 8%;
    position: relative;
    width: 34%;
}
h2 {
    margin-bottom: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
#productContainer {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 items per row */
    gap: 10px;
    padding: 5px;
    margin: 0;
}
.productcard {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
    line-height: 1.0;
    border: 1px solid #ddd;
    box-sizing: border-box;
    min-width: 100px;
    padding: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* make all cards the same height */
/* --- product card layout refresh (compact rating & comment) --- */
.productcard {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
}

    /* image area now has a fixed height so every card lines up */
    .productcard .product-media {
        width: 100%;
        height: 220px; /* tweak to taste */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }

        .productcard .product-media img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* preserves aspect, no stretching */
            border-radius: 10px;
        }

    /* title clamps to 2 lines so rows stay equal height */
    .productcard .product-title {
        min-height: 2.4em; /* two lines */
        line-height: 1.2;
        font-weight: 600;
        font-size: .95rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* one tight row: stars + (N reviews) on the right */
    .productcard .rating-compact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: .85rem;
        line-height: 1;
        min-height: 24px;
    }

        .productcard .rating-compact .stars {
            display: inline-flex;
            gap: 2px;
            letter-spacing: 0;
        }

            .productcard .rating-compact .stars i {
                font-size: 18px;
                color: #f59e0b;
                line-height: 1;
            }

                .productcard .rating-compact .stars i.empty {
                    color: #d1d5db;
                }

        .productcard .rating-compact .review-link {
            color: #6b7280;
            text-decoration: none;
            white-space: nowrap;
        }

            .productcard .rating-compact .review-link:hover {
                text-decoration: underline;
            }

    /* small “comment” link like howsales (kept subtle) */
    .productcard .comment-link {
        display: block;
        text-align: center;
        color: #6b7280;
        font-size: .78rem;
        margin-top: 4px;
        text-decoration: none;
    }

        .productcard .comment-link:hover {
            text-decoration: underline;
        }

    /* price & add button block */
    .productcard .price-line {
        text-align: center;
        font-weight: 700;
        margin-top: 4px;
    }

    .productcard .add-row {
        margin-top: 6px;
    }

        .productcard .add-row .btn {
            width: 100%;
            border-radius: 10px;
        }

/* if you also render cards in a table layout, keep thumbs tidy */
.products.table-layout img.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}


/* on small screens you can shrink a little */
@media (max-width: 576px) {
    .productcard {
        height: 360px;
    }
}

/* image area = 60% of the card height */
.productcard > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60%;
    min-height: 60%;
    width: 100%;
}

    /* image fills the box uniformly (no stretching) */
    .productcard > a img {
        width: 100% !important;
        height: 100% !important; /* overrides inline height:auto */
        object-fit: contain; /* use 'cover' if you prefer full-bleed crop */
        border-radius: 10px;
    }

/* the rest of the card (name/price/desc) uses the remaining 40% */
.productcard .price-line,
.productcard .desc-line {
    margin-top: .25rem;
}

.material-icons {
    display: block;
    margin-bottom: 8px;
    color: #00796b;
}


#moduleContainer {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

button {
    padding: 12px 6px;
    margin-top: 5px;
    cursor: pointer;
}

.buybutton {
    font-size: 13px;
    font-family: Arial;
    padding: 6px 3px;
    min-width:70px;
    cursor:pointer;
    border-width: 1px;
    text-align: center;
    color: #ffffff;
    border-color: rgba(176, 113, 33, 1);
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0px 1px 0px 0px #f0f7fa;
    text-shadow: 0px -1px 0px rgba(200, 77, 52, 1);
    background: linear-gradient(rgba(239, 134, 33, 1), rgba(210, 111, 1, 1));
}

    .buybutton:hover {
        background: linear-gradient(rgba(210, 111, 1, 1), rgba(239, 134, 33, 1));
    }

.buttonClass {
    font-size: 14px;
    font-family: Arial;
    padding: 12px 6px;
    border-width: 1px;
    min-width: 150px;
    cursor: pointer;
    color: #ffffff;
    border-color: #057fd0;
    text-align: center;
    font-weight: bold;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0px 1px 0px 0px #f0f7fa;
    text-shadow: 0px -1px 0px #5b6178;
    background: linear-gradient(#33bdef, #019ad2);
}

    .buttonClass:hover {
        background: linear-gradient(#019ad2, #33bdef);
    }
              

#map {
    width: 100%;
    height: 400px;
    margin-top: 10px;
}
    .sample.one input, .sample.two input {
        border-radius: 15px;
        right: 0;
        transition: all .3s ease-in-out;
        width: 50%;
    }

        .sample.one input:focus, .sample.two input:focus {
            width: 100%;
        }

            .sample.one input:focus ~ button.btn-search, .sample.two input:focus ~ button.btn-search {
                background: green;
                color: #fff;
            }

            .sample.one input:focus ~ button.btn-reset, .sample.two input:focus ~ button.btn-reset {
                right: -22px;
            }
button.btn-search :hover {
    background: green;
    color: #fff;
}
.sample.one button, .sample.two button {
    transition: all .3s ease-in-out;
}

        .sample.one button.btn-search, .sample.two button.btn-search {
            background: #ccc;
            border-radius: 50%;
            height: 26px;
            right: 2px;
            top: 2px;
            transition: all .3s ease-in-out;
            width: 26px;
        }

        .sample.one button.btn-reset, .sample.two button.btn-reset {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            font-size: 10px;
            height: 20px;
            line-height: 20px;
            padding: 0;
            right: 5px;
            top: 5px;
            width: 20px;
            z-index: -1;
        }

    .sample.three, .sample.four {
        perspective: 400px;
    }

        .sample.three input, .sample.four input {
            width: 120px;
        }

            .sample.three input:focus ~ button.btn-search, .sample.four input:focus ~ button.btn-search {
                transform: rotateY(180deg);
                transition: transform .6s ease-in-out .2s;
            }

            .sample.three input:focus ~ button.btn-reset, .sample.four input:focus ~ button.btn-reset {
                transform: rotateX(0deg) translateY(32px) translateX(2px);
                transition: transform .6s ease-in-out .8s;
            }

        .sample.three button.btn-search, .sample.four button.btn-search {
            backface-visibility: visible;
            color: #fff;
            padding: 0;
            position: relative;
            transform: rotateY(0deg);
            transform-origin: 121px 0;
            transform-style: preserve3d;
            transition: transform .6s ease-in-out .2s;
            width: 120px;
        }

        .sample.three button.btn-reset, .sample.four button.btn-reset {
            backface-visibility: hidden;
            background: #ccc;
            transform: rotateX(-180deg) translateY(30px) translateX(2px);
            transform-origin: 0 32px;
            transform-style: preserve3d;
            transition: transform .6s ease-in-out .2s;
            width: 120px;
        }

        .sample.four button.btn-search {
            transition: transform .6s ease-in-out .8s;
        }

    .sample.five, .sample.six {
        perspective: 400px;
    }

        .sample.five input, .sample.six input {
            width: 120px;
        }

            .sample.five input:focus ~ button.btn-search, .sample.six input:focus ~ button.btn-search {
                transform: rotateY(180deg) translateX(60px);
                transition: all .6s ease-in-out .2s;
                width: 60px;
            }

            .sample.five input:focus ~ button.btn-reset, .sample.six input:focus ~ button.btn-reset {
                transform: rotateY(0deg);
                transition: all .6s ease-in-out .8s;
            }

        .sample.five button.btn-search, .sample.six button.btn-search {
            backface-visibility: visible;
            color: #fff;
            padding: 0;
            position: relative;
            transform: rotateY(0deg) translateX(0px);
            transform-origin: 121px 0;
            transform-style: preserve3d;
            transition: all .6s ease-in-out .2s;
            width: 120px;
        }

        .sample.five button.btn-reset, .sample.six button.btn-reset {
            backface-visibility: hidden;
            background: #ccc;
            left: 184px;
            transform: rotateY(180deg);
            transform-origin: left 0;
            transform-style: preserve3d;
            transition: all .6s ease-in-out .2s;
            width: 60px;
        }

        .sample.six button.btn-search {
            transition: all .6s ease-in-out .8s;
        }

    .sample.seven input, .sample.eight input {
        border-right: none;
        transition: all .3s ease-in;
        width: 120px;
    }

        .sample.seven input:focus, .sample.eight input:focus {
            width: 220px;
        }

            .sample.seven input:focus ~ button.btn-search, .sample.eight input:focus ~ button.btn-search {
                background: green;
                border-radius: 0 50% 50% 0;
                color: #fff;
                left: 220px;
            }

            .sample.seven input:focus ~ button.btn-reset, .sample.eight input:focus ~ button.btn-reset {
                animation: bounceRight .6s;
                animation-delay: .2s;
                animation-timing-function: cubic-bezier(0.3, 0.2, 1, 0.8);
                border-radius: 50%;
                color: #fff;
                left: 254px;
            }

    .sample.seven button.btn-search, .sample.eight button.btn-search {
        background: #ccc;
        left: 120px;
        transition: all .3s ease-in;
    }

    .sample.seven button.btn-reset, .sample.eight button.btn-reset {
        background: #000;
        height: 20px;
        left: 120px;
        top: 5px;
        transition: all .3s ease-in;
        width: 20px;
        z-index: -1;
    }

    .sample.nine input, .sample.ten input {
        border-radius: 15px;
        transition: all .6s ease-in-out .3s;
        width: 120px;
    }

        .sample.nine input:focus, .sample.ten input:focus {
            transition-delay: 0;
            width: 200px;
        }

            .sample.nine input:focus ~ button, .sample.ten input:focus ~ button {
                transform: rotateZ(360deg);
            }

                .sample.nine input:focus ~ button.btn-search, .sample.ten input:focus ~ button.btn-search {
                    background: green;
                    color: #fff;
                    left: 172px;
                    transition-delay: 0;
                }

                .sample.nine input:focus ~ button.btn-reset, .sample.ten input:focus ~ button.btn-reset {
                    left: 202px;
                    transition-delay: .3s;
                }

    .sample.nine button, .sample.ten button {
        transition: all .6s ease-in-out;
    }

        .sample.nine button.btn-search, .sample.ten button.btn-search {
            background: #ccc;
            border-radius: 50%;
            height: 26px;
            left: 92px;
            top: 2px;
            transition-delay: .3s;
            width: 26px;
        }

        .sample.nine button.btn-reset, .sample.ten button.btn-reset {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            font-size: 10px;
            height: 20px;
            left: 92px;
            line-height: 20px;
            padding: 0;
            top: 5px;
            width: 20px;
            z-index: -1;
        }

    .sample.eleven input, .sample.twelve input {
        border-radius: 15px;
        transition: all .6s ease-in-out;
        width: 120px;
    }

        .sample.eleven input:focus, .sample.twelve input:focus {
            width: 200px;
        }

            .sample.eleven input:focus ~ button.btn-search, .sample.twelve input:focus ~ button.btn-search {
                animation: jumpTowardSearch 1.2s linear;
                background: green;
                color: #fff;
                left: 172px;
            }

            .sample.eleven input:focus ~ button.btn-reset, .sample.twelve input:focus ~ button.btn-reset {
                animation: jumpTowardReset 1.2s linear .4s;
                left: 202px;
            }

    .sample.eleven button, .sample.twelve button {
        transition: all .6s ease-in-out;
    }

        .sample.eleven button.btn-search, .sample.twelve button.btn-search {
            background: #ccc;
            border-radius: 50%;
            height: 26px;
            left: 92px;
            top: 2px;
            width: 26px;
        }

        .sample.eleven button.btn-reset, .sample.twelve button.btn-reset {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            font-size: 10px;
            height: 20px;
            left: 92px;
            line-height: 20px;
            padding: 0;
            top: 5px;
            width: 20px;
            z-index: -1;
        }

    .sample.thirteen input, .sample.fourteen input {
        background: none;
        border-color: #000;
        border-radius: 15px;
        border-width: 0 0 1px;
        transition: all .8s ease-in-out;
        width: 30px;
    }

        .sample.thirteen input:focus, .sample.fourteen input:focus {
            background: radial-gradient(ellipse at top left, rgba(0, 0, 0, 0) 65%, #ff69b4 140%);
            border-radius: 0 15px 15px 0;
            width: 250px;
        }

            .sample.thirteen input:focus ~ button.btn-search, .sample.fourteen input:focus ~ button.btn-search {
                background: green;
                color: #fff;
                left: 222px;
                transform: rotate(720deg);
            }

            .sample.thirteen input:focus ~ button.btn-reset, .sample.fourteen input:focus ~ button.btn-reset {
                left: 256px;
                transform: rotate(360deg);
            }

    .sample.thirteen button, .sample.fourteen button {
        transition: all .8s ease-in-out;
    }

        .sample.thirteen button.btn-search, .sample.fourteen button.btn-search {
            background: #ccc;
            border: 1px solid #000;
            border-radius: 50%;
            height: 30px;
            left: 0;
            width: 30px;
        }

        .sample.thirteen button.btn-reset, .sample.fourteen button.btn-reset {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            font-size: 10px;
            height: 20px;
            left: 2px;
            line-height: 20px;
            padding: 0;
            top: 10px;
            width: 20px;
            z-index: -1;
        }

@keyframes bounceRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes jumpTowardSearch {
    0% {
        background: #ccc;
        opacity: 1;
        transform: rotateZ(0deg) scale(1);
    }

    20% {
        background: #ccc;
        opacity: 0;
        transform: rotateZ(-60deg) scale(50);
    }

    55% {
        background: green;
        opacity: 0;
        transform: rotateZ(-30deg) scale(100);
    }

    90% {
        background: green;
        opacity: 0;
        transform: rotateZ(-30deg) scale(50);
    }

    100% {
        background: green;
        opacity: 1;
        transform: rotateZ(0deg) scale(1);
    }
}

@keyframes jumpTowardReset {
    0% {
        opacity: 0;
        transform: rotateZ(0deg) scale(1);
    }

    20% {
        opacity: 0;
        transform: rotateZ(-60deg) scale(50);
    }

    55% {
        opacity: 0;
        transform: rotateZ(-30deg) scale(100);
    }

    90% {
        opacity: 0;
        transform: rotateZ(-30deg) scale(50);
    }

    100% {
        opacity: 1;
        transform: rotateZ(0deg) scale(1);
    }
}

.rating {
    color: #f5a623;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.bettercarousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2px 0;
    height: 150px;
    overflow: hidden;
}

.bettercarousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px;
    flex: 1;
    height: 100px;
    overflow: hidden;
}

.littlecarousel-container {
    position: relative;
    display: flex;
    align-items: left;
    margin: 2px 0;
    height: 100px;
    overflow: hidden;
}

.littlecarousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px;
    flex: 1;
    height: 100px;
    overflow: hidden;
}
.checkout-edit-wrapper {
    position: relative;
}

.checkout-edit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2em;
    color: #555;
    cursor: pointer;
    z-index: 10;
}

    .checkout-edit-btn:hover {
        color: #28a745;
    }

.littlecarousel-item {
    min-width: 150px;
    flex: 0 0 auto;
    text-align: left;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
    cursor: pointer;
    transition: transform 0.2s;
}

    .littlecarousel-item:hover {
        transform: scale(1.05);
        background: #f0f0f0;
    }

.littlecarousel-btn {
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    z-index: 2;
}

.cartcarousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2px 0;
    height:150px;
    overflow:hidden;
}

.cartcarousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 10px;
    flex: 1;
    height: 150px;
    overflow: hidden;
}


.star-input span {
    font-size: 1.5em;
    margin-right: 2px;
}
.category-item {
    min-width: 150px;
    flex: 0 0 auto;
    text-align: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f8f8;
    cursor: pointer;
    transition: transform 0.2s;
}

 .category-item:hover {
        transform: scale(1.05);
        background: #f0f0f0;
 }

.cartcarousel-btn {
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    z-index: 2;
}


/*Advert Carousel*/
.advertcarousel-group {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2px 0;
    height: 220px;
    overflow: hidden;
}

.adverttext-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 550px;
    height: 180px;
    margin-top: 2px;
    margin-right: auto;
    margin-left: 2px;
    overflow: hidden;
    border-radius: 10px;
} 
.adverttext-container .cantercontent {
        font-size: 16px;
        font-weight: 400;
        color: #f2e60d;
        align-content:center;
        display:block;
        width:100%;
        margin-left:20px;
    }
    .adverttext-container .cantercontent h1 {
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
    }
  
    .advertcarousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 550px;
    height: 180px;
    margin-bottom: 2px;
    margin-top: auto;
    margin-right: 2px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 10px;
}

.advertcarousel-btn {
    /* background: #eb4c20;*/
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-radius: 50%;
    height: 50px;
    width:50px;
    cursor: pointer;
    font-size: 24px;
    text-align:center;
    align-content:center;
    z-index: 2;
}

/* advertcarousel Container */
.advertcarousel {
    width: 100%;
    height: 350px; /* Adjust height as needed */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

/* advertcarousel Track */
.advertcarousel-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

/* Images */
.advertcarousel img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover; /* Ensures images cover the container */
}

/* Pause animation on hover */
.advertcarousel:hover .advertcarousel-track {
    animation-play-state: paused;
}

/* Keyframes for scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
        animation-play-state: paused;
    }
}



/* Responsive items shown */
@media (max-width: 992px) { /* Laptop+ */
    .category-item {
        max-width: calc(20% - 10px);
    }
    #productContainer {
        grid-template-columns: repeat(5, 1fr); /* 2 items per row */
    }
    .advertcarousel-container {
        width: 550px;
    }
    /* 5 items visible */
}

@media (max-width: 890px) { /* Mobile */
    .category-item {
        max-width: calc(33% - 5px);
    }
    #productContainer {
        grid-template-columns: repeat(4, 1fr); /* 2 items per row */
    }
    .advertcarousel-container {
        width: 550px;
    }
    .container {
        margin: 0px;
        padding: 5px;
    }
    /* 2 items visible */
}

@media (max-width: 678px) { /* Mobile */
    .category-item {
        max-width: calc(33% - 5px);
    }

    #productContainer {
        grid-template-columns: repeat(3, 1fr); /* 2 items per row */
    }

    .container {
        margin: 0px;
        padding: 5px;
    }
    header .logo {
        width: 48px;
        height: 48px;
        border-radius: 5px;
    }
    .advertcarousel-container {
        width: 500px;
    }
    header h1 a{
        font-size: 28px;
    }
    /* 2 items visible */
}

@media (max-width: 480px) { /* Mobile */
    .category-item {
        max-width: calc(40% - 5px);
        height: 150px;
    }
    #productContainer {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }
    .container {
        margin: 0px;
        padding: 5px;
    }
    header .logo {
        width: 30px;
        height: 30px;
        border-radius:5px;
    }
    .advertcarousel-container {
        width: 460px;
    }
    header h1 a{
        font-size: 22px;
        margin-left:10px;
    }
    .adverttext-container {
        display: none;
    }
    .adverttext-container .cantercontent{
        display: none;
    }
    /* 2 items visible */
}

@media (max-width: 320px) { /* Mobile */
    .category-item {
        max-width: calc(40% - 5px);
        height: 150px;
    }
    .advertcarousel-container{
        width: 300px;
    }

    #productContainer {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }

    .container {
        margin: 0px;
        padding: 5px;
    }
    header .logo {
        width: 28px;
        height: 28px;
        border-radius: 5px;
    }
    header h1 a {
        font-size: 20px;
        margin-left: 8px;
    }

    .adverttext-container {
        display: none;
    }

        .adverttext-container .cantercontent {
            display: none;
        }
    /* 2 items visible */
}

.checkout-address-card {
    border: 1px solid #28a745;
    border-radius: 10px;
    padding: 15px;
    background-color: #fefefe;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.price {
    border: 1px solid #28a745;
    padding: 2px;
    background:#ffffff;
    font-size:1.2rem;
    border-radius: 5px;
}

.checkout-muted {
    color: #666;
    font-size: 0.9em;
}

.checkout-item-card {
    display: flex;
    background-color: #f4f6f8;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.checkout-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
}

.checkout-item-details {
    flex: 1;
}

.checkout-payment {
    padding: 20px;
    background-color: #fff;
    min-height: 120vh;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

.checkout-continue-btn {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
}

@media (max-width: 768px) {
    .checkout-payment {
        display: none;
        position: static;
        box-shadow: none;
        height: auto;
    }

    .checkout-continue-btn {
        display: block;
    }
}
#spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The switch container */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

    /* Hide the default checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

    /* The circle inside the slider */
    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

.smalltext {
    font-size:11px;
    height: 30px;
    width: 65px;
    padding: 5px;
    color: #555555;
    border-radius:15px;
    border:solid 1px #aaaaaa;
    display:inline-block;
}

/* When the checkbox is checked */
input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(25px);
    }









.widgetcontainer {
    max-width: 580px;
    margin: 0 auto;
    margin-bottom: 100px;
}

/* Height rules: mobile-first (100vh), then 60vh on laptop+ */
#menuCarousel {
    height: 100vh;
}
/* mobile */
@media (min-width: 992px) { /* laptop and up */
    #menuCarousel {
        height: 60vh;
    }
}

/* Make slides fill the set height */
#menuCarousel .carousel-inner,
#menuCarousel .carousel-item,
#menuCarousel .slide-card {
    height: 100%;
}

.slide-card {
    position: relative;
    margin: 0;
    overflow: hidden;
}

    .slide-card img {
        width: 100%;
        height: 100%; /* fill the fixed height */
        object-fit: cover; /* crop neatly without distortion */
        display: block;
        pointer-events: none;
    }

    .slide-card figcaption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.55);
        color: #fff;
        padding: 1rem 1.25rem;
        z-index: 5;
    }


.carousel-control-prev, .carousel-control-next {
    z-index: 4;
}
/* ensure the image never steals clicks */


    .slide-card h3 {
        margin: 0 0 .25rem;
        font-size: 1.25rem;
    }

    .slide-card .tag {
        display: inline-block;
        font-size: .85rem;
        opacity: .9;
        margin-bottom: .5rem;
    }

    .slide-card p {
        margin: .25rem 0 .75rem;
        font-size: .95rem;
    }

.rating .fa {
    margin-right: .15rem;
}

/* Thumbnails as indicators */
#menuCarousel .carousel-indicators.thumbnails {
    position: static;
    margin: .75rem 0 0;
    gap: .5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    #menuCarousel .carousel-indicators.thumbnails button {
        width: 72px;
        height: 48px;
        overflow: hidden;
        border: 0;
        padding: 0;
        background: transparent;
        opacity: .6;
    }

        #menuCarousel .carousel-indicators.thumbnails button.active,
        #menuCarousel .carousel-indicators.thumbnails button:focus {
            opacity: 1;
            outline: 2px solid #0d6efd;
        }

    #menuCarousel .carousel-indicators.thumbnails img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.latest-product {
    padding-top: 80px;
    padding-bottom: 0;
}

.latest-product__text h4 {
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 45px;
}

.latest-product__slider.owl-carousel .owl-nav {
    right: 20px;
    top: -75px;
}

    .latest-product__slider.owl-carousel .owl-nav button {
        height: 30px;
        width: 30px;
        background: #F3F6FA;
        border: 1px solid #e6e6e6;
        font-size: 14px;
        color: #636363;
        margin-right: 10px;
        line-height: 30px;
        text-align: center;
    }

        .latest-product__slider.owl-carousel .owl-nav button span {
            font-weight: 700;
        }

        .latest-product__slider.owl-carousel .owl-nav button:last-child {
            margin-right: 0;
        }

.latest-product__item {
    margin-bottom: 20px;
    overflow: hidden;
    display: block;
}

.latest-product__item__pic {
    float: left;
    margin-right: 26px;
}

    .latest-product__item__pic img {
        height: 110px;
        width: 110px;
    }

.latest-product__item__text {
    overflow: hidden;
    padding-top: 10px;
}

    .latest-product__item__text h6 {
        color: #252525;
        margin-bottom: 8px;
    }

    .latest-product__item__text span {
        font-size: 18px;
        display: block;
        color: #252525;
        font-weight: 700;
    }

/*---------------------
  Form BLog
-----------------------*/

.from-blog {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .from-blog .blog__item {
        margin-bottom: 30px;
    }

.from-blog__title {
    margin-bottom: 70px;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
    display: flex;
    align-items: center;
    padding: 45px 0 40px;
}

.breadcrumb__text h2 {
    font-size: 46px;
    color: #ffffff;
    font-weight: 700;
}

.breadcrumb__option a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    margin-right: 20px;
    position: relative;
}

    .breadcrumb__option a:after {
        position: absolute;
        right: -12px;
        top: 13px;
        height: 1px;
        width: 10px;
        background: #ffffff;
        content: "";
    }

.breadcrumb__option span {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
}



.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:3px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.85);
    background: transparent;
    color: #fff;
    transition: .15s ease;
}

    .icon-circle:hover {
        background: rgba(255,255,255,.15);
    }

/* Card action buttons on product tiles */
.card-actions .icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.85);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: .15s ease;
}

    .card-actions .icon-btn:hover {
        background: rgba(255,255,255,.15);
    }


.hbuybutton {
    text-decoration: none;
    line-height: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 20px rgba(0,0,0,.05);
    background-color: #fff;
    color: #121212;
    border: none;
    cursor: pointer;
}

.hbuybutton-decor {
    position: absolute;
    inset: 0;
    background-color: var(--clr);
    transform: translateX(-100%);
    transition: transform .3s;
    z-index: 0;
}

.hbuybutton-content {
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.hbuybutton__icon {
    width: 48px;
    height: 40px;
    background-color: var(--clr);
    display: grid;
    place-items: center;
}

.hbuybutton__text {
    display: inline-block;
    transition: color .2s;
    padding: 2px 1.5rem 2px;
    padding-left: .75rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 150px;
}

.hbuybutton:hover .hbuybutton__text {
    color: #fff;
}

.hbuybutton:hover .hbuybutton-decor {
    transform: translate(0);
}

.icon-circle {
    position: relative;
}

.badge-circle {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: #d32f2f;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 0 0 2px #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill {
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #eee;
    font-size: 12px;
}
/* optional: highlight category row when user must pick a category */
.needs-category {
    outline: 2px dashed #f39c12;
    outline-offset: 6px;
}



/* gallery tiles with action buttons */
#galleryGrid .img-tile {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    background: #f8f9fa;
}

    #galleryGrid .img-tile img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
    }

#galleryGrid .tile-actions {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    gap: 6px;
    opacity: .95;
}

    #galleryGrid .tile-actions .btn-icon {
        width: 32px;
        height: 32px;
        border-radius: 16px;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ef4444;
        color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,.2);
    }

        #galleryGrid .tile-actions .btn-icon:hover {
            filter: brightness(.95);
        }


/* --- Dropdown host --- */
.icon-dropdown {
    position: relative;
}

/* --- Circular icon button --- */
.icon-circle {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0,0,0,.25);
    transition: background .15s ease, box-shadow .15s ease, transform .05s ease;
}

    .icon-circle:hover {
        background: #f5f5f5;
    }

    .icon-circle:active {
        transform: scale(.96);
    }

    .icon-circle:focus {
        outline: 2px solid #0ea5e9;
        outline-offset: 2px;
    }

    /* Material icon size for the buttons */
    .icon-circle .material-icons {
        font-size: 22px;
        line-height: 1;
    }

/* --- Dot badges (top-right of the circle) --- */
.badge-dot {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #d32f2f; /* default red */
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}

    .badge-dot.cart {
        background: #22c55e;
    }
    /* green */
    .badge-dot.info {
        background: #0ea5e9;
    }
    /* blue  */
    .badge-dot.warn {
        background: #f59e0b;
    }
/* amber */

/* --- Dropdown panel --- */
.dropdown-content {
    position: absolute;
    right: 0;
    top: 44px;
    min-width: 260px;
    max-width: calc(100vw - 16px);
    max-height: 320px;
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 1100;
    display: none; /* JS toggles to block */
}

    /* If your JS sets the attribute, this will also reveal it */
    .dropdown-content[data-open="1"] {
        display: block;
    }

    /* Optional: little arrow */
    .dropdown-content::before {
        content: "";
        position: absolute;
        top: -8px;
        right: 16px;
        border: 8px solid transparent;
        border-bottom-color: #fff;
        filter: drop-shadow(0 -1px 0 rgba(0,0,0,.08));
    }

/* Header row inside dropdown */
.dropdown-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

/* List reset & rows */
.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.dropdown-content li {
    border-top: 1px solid rgba(0,0,0,.04);
}

    .dropdown-content li:first-child {
        border-top: none;
    }

    .dropdown-content li a {
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: 10px 12px;
        color: inherit;
        text-decoration: none;
    }

    .dropdown-content li:hover {
        background: #f7f7f7;
    }

/* Inline count chips inside rows */
.badge-inline {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    font-size: 12px;
    line-height: 18px;
    border-radius: 9px;
    background: #0ea5e9;
    color: #fff;
}

    .badge-inline.cart {
        background: #22c55e;
    }

    .badge-inline.info {
        background: #0ea5e9;
    }

    .badge-inline.warn {
        background: #f59e0b;
    }

/* Small muted label like “(0)” in headers */
.count-label {
    margin-left: auto;
    color: #666;
    font-weight: 600;
}

/* Mobile tweaks */
@media (max-width:480px) {
    .icon-circle {
        width: 34px;
        height: 34px;
    }

    .dropdown-content {
        min-width: 220px;
    }
}


.dg-footer {
    background: #262626;
    color: #e5e7eb;
    padding: 28px 0 12px;
}

    .dg-footer a {
        color: #cbd5e1;
        text-decoration: none;
    }

        .dg-footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

.dg-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4,1fr);
}

.dg-footer h6 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: .02em;
}

.dg-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dg-footer li {
    margin: 8px 0;
    font-size: 14px;
}

.dg-footer__bottom {
    text-align: center;
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .dg-footer__bottom p {
        margin: 0;
        color: #e5e7eb;
    }

@media (max-width:900px) {
    .dg-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .dg-footer__inner {
        grid-template-columns: 1fr;
    }
}
