@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap");

:root {
    --color-primary: #6abd42;
    --color-primary-dark: #4f9630;
    --color-accent: #d26e4b;
    --text-strong: #1f2933;
    --text-muted: #5d6778;
    --border-soft: #e5e7eb;
    --surface: #ffffff;
    --surface-muted: #f7faf5;
    --shadow-soft: 0 10px 24px rgba(16, 24, 40, 0.1);
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 400;
    color: var(--text-strong);
    background-color: #f6f7f4;
    line-height: 1.5;
}

b,
strong {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

p,
span,
a,
li,
label,
input,
textarea,
button {
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(8px);
}

.container-fuild {
    width: 100%;
    margin: auto;
}

.container-fuild img {
    width: 100%;
    max-height: min(60vh, 560px);
    object-fit: cover;
}

.container {
    width: min(92%, 1200px);
    margin: 36px auto;
    text-align: center;
}

.container h2 {
    font-weight: 500;
    margin: 0 0 10px;
}

.container h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 500;
}

.text-center {
    margin-top: 24px;
    padding: 8px 0;
    clear: both;
}

.title-hr {
    background-color: var(--color-accent);
    border: 1px solid var(--color-accent);
    width: 50px;
    margin-bottom: 35px;
}

.products-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin: 0 0 35px;
}

.products-list-item {
    width: auto;
    padding: 0;
    float: none;
}

.products-list-item:hover {
    cursor: pointer;
}

.products {
    height: 100%;
    border: 1px solid #e6eadf;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--surface);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.products:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.products img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.products h4 {
    margin: 14px 14px 8px;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

.products p {
    margin: 0 14px 14px;
    text-align: left;
}

.products span {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.products del {
    color: #687188;
}

.products button,
.products .product-cta,
.product-cta,
#submit-button,
.submit-btn {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.products button,
.products .product-cta,
.product-cta {
    min-height: 40px;
    margin: auto 14px 16px;
    padding: 8px 16px;
    width: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.products button:hover,
.products .product-cta:hover,
.product-cta:hover,
#submit-button:hover,
.submit-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.products button:focus-visible,
.products .product-cta:focus-visible,
.product-cta:focus-visible,
#submit-button:focus-visible,
.submit-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.products .product-cta,
.product-cta {
    color: #fff;
}

.info-panel {
    max-width: 680px;
    margin: 0 auto 28px;
    background-color: #fff;
    border: 1px solid #e6eadf;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: left;
}

.info-panel h2 {
    margin: 0 0 8px;
}

.info-panel p {
    margin: 0 0 14px;
    color: var(--text-muted);
}

.info-panel .product-cta {
    margin: 0 10px 14px 0;
}

.list-icon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 26px;
    margin-bottom: 34px;
    align-items: stretch;
}

.list-icon-item {
    width: auto;
    float: none;
    border: 1px solid #e6eadf;
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 14px 8px;
}

.list-icon-item img {
    width: 64px;
    margin: 0 auto 10px;
}

.list-icon-item h3 {
    margin: 0;
}

.list-icon-item a {
    font-size: 1.05rem;
    color: var(--text-strong);
    text-decoration: none;
}

.list-icon-item h3 a:hover {
    color: var(--color-primary-dark);
}

.list-icon-discnt {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 2;
    margin: 0;
    border-radius: var(--radius-md);
    border: 1px solid #e6eadf;
}

.list-icon-discnt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.list-icon-discnt:hover img {
    transform: scale(1.08);
}

.list-blog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 26px;
    margin-bottom: 10px;
}

.list-blog-item {
    overflow: hidden;
    width: auto;
    margin: 0;
    float: none;
    text-align: left;
    border: 1px solid #e6eadf;
    border-radius: var(--radius-md);
    background-color: #fff;
}

.list-blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.list-blog-item:hover img {
    transform: scale(1.06);
}

.list-blog-item h4 {
    margin: 12px 14px 8px;
}

.list-blog-item p {
    margin: 0 14px 14px;
    color: var(--text-muted);
}

.list-blog-item a {
    text-decoration: none;
    font-weight: 400;
    color: var(--text-strong);
    font-size: 1rem;
}

.list-blog-item a:hover {
    color: var(--color-primary-dark);
}

.blog {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 5 / 3;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .container {
        margin-top: 26px;
    }

    .products button {
        width: calc(100% - 28px);
        align-self: center;
    }
}
