/* ============================================
   LS LABFARM CITY — CBD Nice
   Design inspiré de kilogrammes.com
   Palette : Noir profond / Vert néon / Blanc
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-bg: #0d0d0d;
    --color-bg-alt: #111111;
    --color-bg-card: #1a1a1a;
    --color-bg-card-hover: #222222;
    --color-surface: #161616;
    --color-green: #39FF14;
    --color-green-dim: #2bcc10;
    --color-green-glow: rgba(57, 255, 20, 0.3);
    --color-green-subtle: rgba(57, 255, 20, 0.08);
    --color-purple: #b44dff;
    --color-purple-glow: rgba(180, 77, 255, 0.2);
    --color-white: #ffffff;
    --color-text: #e0e0e0;
    --color-text-muted: #888888;
    --color-border: #2a2a2a;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--color-green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header__banner {
    background: var(--color-green);
    color: var(--color-bg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    overflow: hidden;
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
}

.banner__scroll {
    display: inline-flex;
    animation: bannerScroll 25s linear infinite;
}

@keyframes bannerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo img {
    height: 110px;
    width: auto;
    transition: transform var(--transition);
}

.header__logo:hover img {
    transform: scale(1.05);
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.header__menu li a {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
    position: relative;
}

.header__menu li a:hover {
    color: var(--color-green);
    background: var(--color-green-subtle);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__burger span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-bg);
    overflow: hidden;
    padding-top: 112px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0.35;
    filter: saturate(0.8);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.3) 40%, rgba(13, 13, 13, 0.7) 80%, rgba(13, 13, 13, 1) 100%),
        radial-gradient(ellipse at 30% 20%, var(--color-green-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, var(--color-purple-glow) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="0.5" fill="rgba(57,255,20,0.08)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
}

.hero__logo {
    width: 220px;
    height: auto;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 40px var(--color-green-glow));
    animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-text);
    margin-bottom: 8px;
    font-weight: 300;
}

.hero__subtitle strong {
    color: var(--color-green);
    font-weight: 600;
}

.hero__tagline {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero__scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-green), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}

.btn__arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--color-green);
    color: var(--color-bg);
    box-shadow: 0 0 30px var(--color-green-glow);
}

.btn--primary:hover {
    background: var(--color-white);
    color: var(--color-bg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.btn--secondary {
    background: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
}

.btn--secondary:hover {
    background: var(--color-green);
    color: var(--color-bg);
    box-shadow: 0 0 30px var(--color-green-glow);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- SECTIONS --- */
.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--color-bg);
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section__title--huge {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__header .section__desc {
    margin-left: auto;
    margin-right: auto;
}

.section__cta {
    text-align: center;
    margin-top: 48px;
}

/* --- PRODUCT CARDS --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.product-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(57, 255, 20, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card--resin::before {
    background: linear-gradient(90deg, var(--color-purple), transparent);
}

.product-card--resin:hover {
    border-color: var(--color-purple);
    box-shadow: 0 8px 32px var(--color-purple-glow);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-green);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.product-card--resin .product-card__badge {
    background: var(--color-purple);
    color: var(--color-white);
}

.product-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-card__type {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- GALLERY --- */
.section--gallery {
    background: var(--color-bg-alt);
    padding: 100px 0;
}

.section--gallery .section__title {
    text-align: center;
}

.section--gallery .section__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: span 2;
}

.gallery__item--large img {
    height: 400px;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* --- ABOUT SECTION --- */
.section--about {
    background: var(--color-bg);
    padding: 100px 0;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature:hover {
    border-color: var(--color-green);
    background: var(--color-bg-card-hover);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-green-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-green);
}

.feature__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.feature__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- CONTACT SECTION --- */
.section--contact {
    background: var(--color-bg-alt);
    padding: 100px 0;
}

.section--contact .section__title {
    text-align: center;
}

.section--contact .section__desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: all var(--transition);
}

.contact__card:hover {
    border-color: var(--color-green);
}

.contact__card-icon {
    width: 40px;
    height: 40px;
    background: var(--color-green-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.contact__card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-green);
}

.contact__card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contact__card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact__map {
    margin-top: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* --- CONTACT FORM --- */
.contact__form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__group--full {
    grid-column: span 2;
}

.form__group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form__group input,
.form__group select,
.form__group textarea {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-white);
    transition: all var(--transition);
    outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--color-text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px var(--color-green-subtle);
}

.form__group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form__group select option {
    background: var(--color-bg-card);
    color: var(--color-white);
}

.contact__form .btn {
    grid-column: span 2;
    margin-top: 8px;
}

.form__success {
    text-align: center;
    padding: 60px 40px;
}

.form__success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-green);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.form__success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.form__success p {
    color: var(--color-text-muted);
}

/* --- FOOTER --- */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand img {
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer__links h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer__links ul {
    list-style: none;
}

.footer__links ul li {
    margin-bottom: 8px;
}

.footer__links ul li a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer__links ul li a:hover {
    color: var(--color-green);
}

.footer__links p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer__address {
    margin-top: 12px;
    color: var(--color-green) !important;
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer__legal {
    font-size: 0.7rem !important;
    color: #555 !important;
}

/* --- ANIMATIONS ON SCROLL --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about__features {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .header__menu.active {
        opacity: 1;
        visibility: visible;
    }

    .header__menu li a {
        font-size: 1.5rem;
        padding: 12px 24px;
    }

    .hero__logo {
        width: 160px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .section {
        padding: 64px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 20px 14px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery__item--large {
        grid-column: span 1;
    }

    .gallery__item img,
    .gallery__item--large img {
        height: 250px;
    }

    .contact__form {
        grid-template-columns: 1fr;
    }

    .form__group--full {
        grid-column: span 1;
    }

    .contact__form .btn {
        grid-column: span 1;
    }

    .contact__form-wrapper {
        padding: 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        padding: 16px 10px;
    }

    .product-card__name {
        font-size: 0.95rem;
    }

    .product-card__icon {
        font-size: 1.5rem;
    }

    .hero__logo {
        width: 130px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .header__nav {
        padding: 10px 16px;
    }
}

/* --- Neon glow effect for section titles --- */
.section__title--huge {
    text-shadow: 0 0 40px var(--color-green-glow);
}

/* --- Scrollbar styling --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-green-dim);
}

/* --- Selection --- */
::selection {
    background: var(--color-green);
    color: var(--color-bg);
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--color-green);
}

.faq-item[open] {
    border-color: var(--color-green);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.08);
}

.faq-item__question {
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-green);
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 24px 20px;
}

.faq-item__answer p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Product Cards with Images --- */
.product-card--with-img {
    padding: 0;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--color-surface);
}

.product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card--with-img:hover .product-card__img img {
    transform: scale(1.08);
}

.product-card--with-img .product-card__name {
    padding: 16px 16px 4px;
}

.product-card--with-img .product-card__type {
    padding: 0 16px 16px;
}

.product-card--with-img .product-card__badge {
    z-index: 2;
}

/* Resins grid with images - slightly larger cards */
.products-grid--resins {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .products-grid--resins {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card__img {
        height: 150px;
    }
    
    .product-card--with-img .product-card__name {
        padding: 12px 12px 4px;
        font-size: 0.95rem;
    }
    
    .product-card--with-img .product-card__type {
        padding: 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .products-grid--resins {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card__img {
        height: 120px;
    }
    
    .product-card--with-img .product-card__name {
        padding: 8px 8px 2px;
        font-size: 0.85rem;
    }
    
    .product-card--with-img .product-card__type {
        padding: 0 8px 10px;
        font-size: 0.7rem;
    }
}
