/* Product Series Section */
.product-series-section {
    padding: 80px 0;
    background: #ffffff;
}

/* ============================================
   PRODUCT HERO - MODERN (dark, powerful)
   ============================================ */

.products-page .product-hero--modern {
    position: relative;
    background: linear-gradient(115deg, rgba(10, 22, 14, 0.92), rgba(15, 35, 22, 0.75)),
        url('../images/Footer.png') center/cover;
    color: #ffffff;
    padding-top: 110px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.products-page .product-hero--modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(70, 154, 79, 0.25), transparent 50%);
    pointer-events: none;
}

.products-page .product-hero--modern .container {
    position: relative;
    z-index: 1;
}

.products-page .product-hero__content {
    max-width: 560px;
}

.products-page .product-hero__eyebrow--light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.products-page .product-hero__title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Mona Sans', sans-serif;
    letter-spacing: -0.02em;
}

.products-page .product-hero__lead--light {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.88);
}

.products-page .product-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.products-page .product-hero__stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.products-page .product-hero__stat:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(70, 154, 79, 0.5);
}

.products-page .product-hero__stat-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.products-page .product-hero__stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.products-page .product-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}

.products-page .product-hero__actions .btn-primary-custom {
    min-width: 0;
    max-width: none;
    width: auto;
}

.products-page .product-hero__secondary {
    border-radius: 70px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 600;
    background: transparent;
}

.products-page .product-hero__secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

.products-page .product-hero__trust {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
}

.products-page .product-hero__trust-item i {
    margin-right: 6px;
}

/* Product hero visual – image + badges + brand row */
.product-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-hero__image-wrap {
    position: relative;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.product-hero__image {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.product-hero__badge-stack {
    position: absolute;
    bottom: -14px;
    left: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hero__badge {
    background: #ffffff;
    color: #1a3d26;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Brand images grid – 6 tractor images (main hero visual) */
.product-hero__brand-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-hero__brand-image-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-hero__brand-image-card:hover {
    transform: translateY(-6px);
    border-color: rgba(70, 154, 79, 0.6);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.product-hero__brand-image-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.product-hero__brand-image-name {
    display: block;
    padding: 12px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.35);
}

.product-hero__brand-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-hero__brand-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 4px;
}

.product-hero__brand-logo {
    display: block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-hero__brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

.product-hero__brand-row img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Product hero – responsive */
@media (max-width: 991.98px) {
    .products-page .product-hero--modern {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .products-page .product-hero__content {
        text-align: center;
        margin: 0 auto;
    }

    .products-page .product-hero__stats {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .products-page .product-hero__stat {
        min-width: 200px;
    }

    .products-page .product-hero__actions {
        justify-content: center;
    }

    .products-page .product-hero__trust {
        justify-content: center;
    }

    .product-hero__badge-stack {
        position: static;
        margin-top: 14px;
        justify-content: center;
    }

    .product-hero__brand-row {
        justify-content: center;
    }

    .product-hero__brand-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .product-hero__brand-image-card img {
        height: 120px;
    }
}

@media (max-width: 575.98px) {
    .products-page .product-hero__actions .btn-primary-custom,
    .products-page .product-hero__secondary {
        width: 100%;
        justify-content: center;
    }

    .products-page .product-hero__title {
        font-size: 1.75rem;
    }

    .product-hero__image-wrap {
        padding: 14px;
    }

    .product-hero__brand-row img {
        height: 24px;
    }

    .product-hero__brand-images {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
    }

    .product-hero__brand-image-card img {
        height: 100px;
    }

    .product-hero__brand-image-name {
        font-size: 0.72rem;
        padding: 8px 6px;
    }
}

.product-series-section .row {
    margin: 0;
}

.product-series-section .row>* {
    padding: 0 15px;
    margin-bottom: 30px;
}

.neostar-products-section .row {
    margin: 0;
}

.neostar-products-section .row>* {
    padding: 0 15px;
    margin-bottom: 30px;
}

.series-card {
    background: #E1E1E1;
    border: 1px solid #e0e0e0;
    border-radius: 60px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.series-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-green);
    background: #0080000d;
}

/* All Series Cards - Green Border on Hover */
.neostar-card:hover,
.l-series-card:hover,
.mu-series-card:hover {
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    background: #0080000d;
}

.series-image {
    width: 100%;
    height: 280px;
    min-height: 280px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: #E1E1E1; */
    border-radius: 8px;
    flex-shrink: 0;
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.series-card:hover .series-image img {
    transform: scale(1.05);
}

.series-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.series-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-family: 'Mona Sans', sans-serif;
    text-align: center;
}

.series-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.series-specs li {
    padding: 8px 0;
    color: #666;
    font-size: 20px;
    font-weight: 400;
    text-align: center;

}

/* Neostar Products Section */
.neostar-products-section {
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Product Overview Section */
.product-overview-section {
    position: relative;
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
    overflow: hidden;
}

.product-overview-section::before,
.product-overview-section::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(70, 154, 79, 0.12);
    z-index: 0;
}

.product-overview-section::before {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px;
}

.product-overview-section::after {
    width: 160px;
    height: 160px;
    bottom: -50px;
    left: -50px;
}

.product-overview-section .container {
    position: relative;
    z-index: 1;
}

.product-overview-header {
    max-width: 920px;
}

.product-overview-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 12px;
}

.product-overview-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 18px;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.2;
}

.product-overview-lead {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin: 0;
}

.product-overview-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 28px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(70, 154, 79, 0.12);
    height: 100%;
}

.product-overview-card-dark {
    background: #0f1f14;
    color: #f6fbf7;
    border-color: transparent;
}

.product-overview-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: inherit;
}

.product-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.product-overview-list li {
    position: relative;
    padding-left: 32px;
    color: #3f3f3f;
    font-size: 1rem;
    line-height: 1.6;
}

.product-overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(70, 154, 79, 0.15);
}

.product-overview-card-dark .product-overview-list li,
.product-overview-card-dark .product-overview-text {
    color: #dfe9e3;
}

.product-overview-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-overview-metrics {
    display: grid;
    gap: 16px;
}

.metric-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-value {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.metric-label {
    font-size: 0.92rem;
    color: #cbd7cf;
}

/* Brand Section Header */
.section-header-with-bar {
    position: relative;
    padding-left: 20px;
    max-width: 100%;
}

.section-header-with-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-green) 0%, #3f8f52 100%);
    border-radius: 2px;
}

.section-title-with-bar {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 20px;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #4d4d4d;
    line-height: 1.7;
    margin: 0;
}

.brand-section-header {
    margin-bottom: 30px;
}

.brand-section-header .hero-buttons {
    align-items: flex-start;
    margin-top: 20px;
}

.brand-section-header .btn-primary-custom {
    min-width: 260px;
}

@media (min-width: 992px) {
    .brand-section-header .hero-buttons {
        align-items: flex-end;
        margin-top: 0;
    }

    .brand-section-header .btn-primary-custom {
        margin-left: auto;
    }
}

.neostar-products-section .section-title {
    color: var(--dark-grey);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.product-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(12, 38, 21, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid rgba(70, 154, 79, 0.15);
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 60px rgba(12, 38, 21, 0.14);
    border-color: rgba(70, 154, 79, 0.5);
}

.product-header {
    margin-bottom: 12px;
    padding-bottom: 0;
    text-align: center;
    width: 100%;
}

.product-model {
    font-size: 1.6rem;
    font-weight: 800;
    color: #183f27;
    margin-bottom: 6px;
    font-family: 'Mona Sans', sans-serif;
    text-align: center;
}

.product-power {
    font-size: 0.98rem;
    color: #5a5a5a;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.product-brand {
    margin-bottom: 22px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-brand img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.brand-logo {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2f6c44;
    letter-spacing: 0.18em;
    font-family: 'Mona Sans', sans-serif;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(70, 154, 79, 0.12);
    border: 1px solid rgba(70, 154, 79, 0.25);
}

.product-image {
    width: 100%;
    height: 260px;
    min-height: 260px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: #f4f7f5;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-specs {
    flex: 1;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.spec-item {
    font-size: 0.98rem;
    color: #5d5d5d;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center;
}

.spec-item strong {
    color: #2f6c44;
    font-weight: 700;
}

.btn-know-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f6b3b;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    width: 100%;
    font-family: 'Mona Sans', sans-serif;
    gap: 10px;
    box-shadow: 0 12px 24px rgba(31, 107, 59, 0.25);
}

.btn-know-more:hover {
    background-color: #185a31;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-know-more span {
    flex: 0 1 auto;
    text-align: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.btn-know-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    background-color: #ffffff;
    color: #1f6b3b;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-know-more:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-series-section {
        padding: 60px 0;
    }

    .neostar-products-section {
        padding: 60px 0;
    }

    .neostar-products-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .series-title {
        font-size: 1.3rem;
    }

    .product-model {
        font-size: 1.35rem;
    }

    .section-title-with-bar {
        font-size: 2.1rem;
    }

    .product-overview-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .product-series-section {
        padding: 50px 0;
    }

    .neostar-products-section {
        padding: 50px 0;
    }

    .neostar-products-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .series-card {
        padding: 30px 20px;
        margin-bottom: 20px;
        min-height: 420px;
    }

    .series-image {
        height: 240px;
        min-height: 240px;
        margin-bottom: 25px;
    }

    .series-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .series-specs li {
        font-size: 0.9rem;
        padding: 6px 0;
        padding-left: 18px;
    }

    .product-card {
        padding: 22px 18px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .product-image {
        height: 220px;
        min-height: 220px;
        margin-bottom: 18px;
    }

    .product-model {
        font-size: 1.2rem;
    }

    .section-title-with-bar {
        font-size: 1.8rem;
    }

    .product-overview-title {
        font-size: 1.9rem;
    }

    .product-overview-card {
        padding: 24px;
    }

    .product-power {
        font-size: 0.9rem;
    }

    .brand-logo {
        font-size: 0.8rem;
    }

    .product-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .product-brand img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    .product-image {
        height: 200px;
        min-height: 200px;
        margin-bottom: 16px;
    }

    .spec-item {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .btn-know-more {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-series-section {
        padding: 40px 0;
    }

    .neostar-products-section {
        padding: 40px 0;
    }

    .neostar-products-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .series-card {
        padding: 25px 15px;
        min-height: 380px;
    }

    .series-image {
        height: 200px;
        min-height: 200px;
        margin-bottom: 20px;
    }

    .series-title {
        font-size: 1.1rem;
    }

    .series-specs li {
        font-size: 0.85rem;
    }

    .product-card {
        padding: 20px 16px;
        min-height: auto;
    }

    .product-image {
        height: 200px;
        min-height: 200px;
        margin-bottom: 16px;
    }

    .product-model {
        font-size: 1.15rem;
    }

    .section-title-with-bar {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .product-overview-title {
        font-size: 1.6rem;
    }

    .product-overview-eyebrow {
        letter-spacing: 0.15em;
    }

    .product-power {
        font-size: 0.85rem;
    }

    .brand-logo {
        font-size: 0.78rem;
    }

    .product-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 18px;
    }

    .product-brand img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    .product-image {
        height: 190px;
        min-height: 190px;
    }

    .spec-item {
        font-size: 0.85rem;
    }
}


/* ============================================
   PREMIUM PRODUCTS SECTION - STATE OF THE ART
   ============================================ */

.premium-products-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f5f0 0%, #fafaf8 50%, #f5f5f0 100%);
    overflow: hidden;
}

/* Animated mesh gradient background */
.premium-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(at 20% 30%, rgba(74, 124, 89, 0.06) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(139, 157, 137, 0.06) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(90, 144, 104, 0.04) 0px, transparent 50%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    animation: meshPulse 15s ease-in-out infinite;
}

@keyframes meshPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.premium-products-section>.container {
    position: relative;
    z-index: 1;
}

/* ============================================
   PREMIUM PRODUCT CARD - GLASSMORPHISM
   ============================================ */

.premium-product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(232, 231, 224, 0.6);
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Premium gradient overlay */
.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(74, 124, 89, 0.03) 0%,
            rgba(139, 157, 137, 0.02) 50%,
            rgba(90, 144, 104, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px;
    z-index: 0;
    pointer-events: none;
}

/* Animated shimmer effect */
.premium-product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

/* Animated gradient border on hover */
.premium-product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4a7c59, #5a9068, #6ba777);
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.premium-product-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 1) inset,
        0 0 40px rgba(74, 124, 89, 0.25);
    border-color: transparent;
}

.premium-product-card:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.premium-product-card:hover::after {
    opacity: 1;
}

.premium-product-card:hover .product-card-overlay {
    opacity: 1;
}

/* Ensure content is above effects */
.premium-product-card>* {
    position: relative;
    z-index: 2;
}

/* ============================================
   PREMIUM BADGES - TOP OF CARD
   ============================================ */

.product-category-badge,
.product-power-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.product-category-badge {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.15), rgba(90, 144, 104, 0.15));
    color: #2f6c44;
    border: 1.5px solid rgba(74, 124, 89, 0.25);
}

.product-power-badge {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(201, 153, 94, 0.15));
    color: #8b6f3e;
    border: 1.5px solid rgba(184, 136, 77, 0.25);
}

.premium-product-card:hover .product-category-badge {
    background: linear-gradient(135deg, #4a7c59, #5a9068);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(74, 124, 89, 0.3);
}

.premium-product-card:hover .product-power-badge {
    background: linear-gradient(135deg, #d4a574, #c9995e);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(184, 136, 77, 0.3);
}

.product-category-badge i,
.product-power-badge i {
    font-size: 0.875rem;
    animation: badgeIconPulse 2s ease-in-out infinite;
}

@keyframes badgeIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ============================================
   PREMIUM HEADER SECTION
   ============================================ */

.premium-product-header {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(232, 231, 224, 0.5);
}

.premium-product-model {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1917 0%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.premium-product-card:hover .premium-product-model {
    background: linear-gradient(135deg, #4a7c59 0%, #5a9068 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
}

.premium-product-power {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #73726a;
    margin: 0;
}

/* ============================================
   PREMIUM BRAND BADGE
   ============================================ */

.premium-product-brand {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.premium-brand-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(139, 157, 137, 0.12), rgba(90, 144, 104, 0.12));
    border: 1.5px solid rgba(74, 124, 89, 0.2);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2f6c44;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.premium-product-card:hover .premium-brand-badge {
    background: linear-gradient(135deg, #4a7c59, #5a9068);
    color: white;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(74, 124, 89, 0.3);
}

.premium-brand-badge i {
    animation: gemRotate 4s ease-in-out infinite;
}

@keyframes gemRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

/* ============================================
   PREMIUM PRODUCT IMAGE
   ============================================ */

.premium-product-image {
    position: relative;
    width: 100%;
    height: 240px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9f8 0%, #ffffff 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(232, 231, 224, 0.6);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04) inset;
}

.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: rotate(45deg) translateX(-100%);
    pointer-events: none;
    z-index: 1;
}

.premium-product-card:hover .image-shine {
    animation: imageShine 1s ease;
}

@keyframes imageShine {
    to {
        transform: rotate(45deg) translateX(100%);
    }
}

.premium-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    position: relative;
}

.premium-product-card:hover .premium-product-image img {
    transform: scale(1.1) rotate(2deg);
}

.premium-product-card:hover .premium-product-image {
    border-color: rgba(74, 124, 89, 0.4);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.04) inset,
        0 0 24px rgba(74, 124, 89, 0.15);
}

/* ============================================
   PREMIUM SPECS DISPLAY
   ============================================ */

.premium-product-specs {
    flex: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 250, 248, 0.8));
    border: 1.5px solid rgba(232, 231, 224, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.spec-icon {
    font-size: 1.375rem;
    color: #4a7c59;
    min-width: 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.12), rgba(90, 144, 104, 0.12));
    border-radius: 9px;
    transition: all 0.3s ease;
}

.spec-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #525149;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1917;
}

.premium-product-card:hover .premium-spec-item {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(90, 144, 104, 0.08));
    border-color: rgba(74, 124, 89, 0.3);
    transform: translateX(6px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.premium-product-card:hover .spec-icon {
    background: linear-gradient(135deg, #4a7c59, #5a9068);
    color: white;
    transform: rotate(360deg) scale(1.1);
}

/* ============================================
   PREMIUM CTA BUTTON
   ============================================ */

.premium-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #4a7c59 0%, #5a9068 100%);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 12px 24px rgba(74, 124, 89, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    overflow: hidden;
    position: relative;
}

.premium-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5a9068 0%, #6ba777 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-inquiry-btn:hover::before {
    opacity: 1;
}

.premium-inquiry-btn .btn-text,
.premium-inquiry-btn .btn-icon-wrapper {
    position: relative;
    z-index: 1;
}

.premium-inquiry-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(74, 124, 89, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 0 32px rgba(74, 124, 89, 0.3);
    color: white;
}

.btn-text {
    flex: 1;
    color: white;
    font-size: 0.875rem;
}

.btn-icon-wrapper {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.btn-icon {
    font-size: 1rem;
    color: white;
    transition: transform 0.4s ease;
}

.premium-inquiry-btn:hover .btn-icon-wrapper {
    background: white;
    transform: scale(1.2);
}

.premium-inquiry-btn:hover .btn-icon {
    color: #4a7c59;
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ============================================ */

@media (max-width: 991px) {
    .premium-products-section {
        padding: 80px 0;
    }

    .premium-product-card {
        min-height: 600px;
        padding: 28px 24px;
    }

    .premium-product-model {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .premium-products-section {
        padding: 60px 0;
    }

    .premium-product-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .premium-product-header {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .premium-product-model {
        font-size: 1.375rem;
    }

    .premium-product-power {
        font-size: 0.9375rem;
    }

    .product-category-badge,
    .product-power-badge {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .premium-brand-badge {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }

    .premium-product-image {
        height: 220px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .premium-spec-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .spec-icon {
        font-size: 1.25rem;
        min-width: 28px;
        width: 28px;
        height: 28px;
    }

    .spec-label {
        font-size: 0.75rem;
    }

    .spec-value {
        font-size: 0.9375rem;
    }

    .premium-inquiry-btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .btn-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .btn-icon {
        font-size: 1rem;
    }

    /* Touch-optimized interactions */
    .premium-product-card:active {
        transform: scale(0.98);
    }
}

@media (max-width: 575px) {
    .premium-products-section {
        padding: 50px 0;
    }

    .premium-product-card {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .premium-product-model {
        font-size: 1.25rem;
    }

    .premium-product-power {
        font-size: 0.875rem;
    }

    .premium-product-image {
        height: 200px;
    }

    .premium-spec-item {
        gap: 10px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .premium-product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}