/* =========================================
   Global & Reset
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gesta', Arial, sans-serif;
}

:root {
    color-scheme: light;
    --syngenta-blue: #084CA1;
    --syngenta-blue-hover: #0C44A2;
    --syngenta-green: #048052;
    --syngenta-green-hover: #157347;
    --syngenta-lime: #DAFF00;
    --syngenta-gray: #141414;
    --syngenta-light-gray: #4F5150;
    --syngenta-btn-green: #198754;
    --syngenta-btn-green-hover: #157347;
    --syngenta-btn-blue: #084CA1;
    --syngenta-btn-green-hover: #0b5ed7;
}


.btn-std-green {
    background: #198754 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    width: 190px !important;
}

.btn-std-green:hover {
    background: #157347 !important;
    color: #ffffff !important;
}

.btn-std-blue {
    background: #084CA1 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    width: 190px !important;
}

.btn-std-blue:hover {
    background: #0b5ed7 !important;
    color: #ffffff !important;
}

.btn-std-syngenta {
    border-radius: 50px !important;
    transition: all 0.3s !important;
}

.btn-std-syngenta:hover {
    transform: translateY(-2px) !important;
}

.btn-size-font {
    font-size: 1rem !important;
}



html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Gesta', Arial, sans-serif;
    background: #ffffff;
    /* Default, overridden by specific pages */
}

/* Backgrounds per page type */
.page-catalog,
.page-settings,
.page-account {
    background: white;
    /* Gray background for these pages */
}

.page-catalog body,
.page-settings body,
.page-account body {
    background: #f8f9fa;
    /* Catalog body override if needed, usually matches html/body */
}

/* =========================================
   Header & Navigation (Common)
   ========================================= */
.main-header {
    background: var(--syngenta-blue);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    display: none;
}

.header-logo img {
    height: 40px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav-logo {
    display: none;
    height: 40px;
    margin-left: -30px;
    margin-right: auto;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.header-nav-logo img {
    height: 100%;
    object-fit: contain;
}

@media (min-width: 992px) {
    .header-nav-logo {
        display: flex;
    }
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.dropdown>a {
    color: #ffffff;
    text-decoration: none;
}

.nav-item.dropdown>a:visited {
    color: #ffffff;
}

.nav-item:hover {
    color: var(--syngenta-lime);
}

.nav-item i {
    font-size: 1.1rem;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.7rem;
    border-top: 0;
}

/* Submenu Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 250px;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    display: block;
    padding: 12px 25px;
    color: var(--syngenta-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item-custom:hover {
    background: #f8f9fa;
    color: var(--syngenta-blue);
    padding-left: 30px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--syngenta-blue);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.mobile-nav-close i {
    font-size: 1.5rem;
}

.mobile-nav .nav-item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Common Components
   ========================================= */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--syngenta-gray);
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat SemiBold', sans-serif;
}

.form-control-custom:focus {
    outline: none;
    border-color: #2eaf3f;
    /* Default green focus */
    box-shadow: 0 0 0 3px rgba(46, 175, 63, 0.1);
}

.form-control-custom::placeholder {
    color: #d1d5db;
}

/* Specific focus colors if needed */
.page-settings .form-control-custom:focus,
.page-contact .form-control-custom:focus,
.page-register .form-control-custom:focus {
    border-color: var(--syngenta-blue);
    box-shadow: 0 0 0 3px rgba(30, 91, 168, 0.1);
}

/* =========================================
   Page: Home (index_2.html)
   ========================================= */
.page-home .hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
}

.page-home .right-panel > .logo_mobile {
    display:none;
}

.page-home .left-panel {
    background: var(--syngenta-blue) url(../img/pattern_home.png) center / cover;
    color: #fff;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.page-home .left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-home .logo {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.page-home .logo img {
    max-width: 250px;
    height: auto;
}

.page-home .content {
    position: relative;
    z-index: 1;
}

.page-home .main-title {
    font-size: 6.1rem;
    font-weight: 800;
    line-height: 6.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-home .highlight {
    color: var(--syngenta-lime);
    display: block;
}

.page-home .subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 500px;
}

.page-home .subtitle strong {
    font-weight: 600;
}

.page-home .buttons-container {
    display: flex;
    gap: 20px;
}

.page-home .btn-custom {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 190px;
}

.page-home .btn-primary-custom {
    background: var(--syngenta-green);
    color: #ffffff;
}

.page-home .btn-primary-custom:hover {
    background: var(--syngenta-green-hover);
}

.page-home .btn-secondary-custom {
    background: #ffffff;
    color: var(--syngenta-blue);
}

.page-home .btn-secondary-custom:hover {
    background: var(--syngenta-blue-hover);
    color: #ffffff;
}

.page-home .right-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-home .right-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(90deg, rgba(30, 91, 168, 0.1) 0%, transparent 30%); */
}

@media (max-width: 1440px) {
    .page-home .main-title {
        font-size: 4.5rem;
        line-height: 4.8rem;
    }

    .page-home .left-panel {
        padding: 50px 60px;
    }
}
@media (min-width: 992px) {
    .header-logo-desktop {
        position:absolute;
        left: 30px;
    }

    .header-logo-desktop img {
        height: 35px;
    }
}

/* Page Home Responsive */
@media (max-width: 1200px) {

    .page-home .main-title {
        font-size: 3.5rem;
    }

    .page-home .left-panel {
        padding: 50px 60px;
    }
}

@media (max-width: 992px) {

    .page-home .hero-section {
        flex-direction: column;
        height: 100vh;
    }

    .page-home .left-panel,
    .page-home .right-panel {
        width: 100% !important;
    }

    .page-home .right-panel {
        height: 45vh;
        min-height: 45vh;
        order: 1;
    }

    .page-home .left-panel {
        height: 55vh;
        min-height: 55vh;
        order: 2;
        text-align: center;
        padding: 50px 30px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-home .logo {
        display: none;
        margin-bottom: 0;
    }

    .page-home .main-title {
        font-size: 2.8rem;
    }

    .page-home .subtitle {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
    }

    .page-home .buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-home .btn-custom {
        width: 90%;
        max-width: 350px;
        text-align: center;
    }
}


@media (max-width: 576px) {
    .page-home .right-panel > .logo_mobile {
        margin-top: 15px;
        margin-left: 15px;
        display: block;
    }
    .page-home .right-panel > .logo_mobile > img {
        width: 170px;
    }

    .page-home .main-title {
        /* font-size: 3.3rem; */
        font-size: 2.7rem;
        line-height: 1;
        margin-bottom: 20px;
        text-align:left;
        /* width: 343px; */
        width: 362px;
    }

    .page-home .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        text-align:left;
    }

    .page-home .btn-custom {
        padding: 16px 40px;
        font-size: 1.05rem;
        width: 60%;
    }

    .page-home .left-panel {
        padding: 40px 25px;
        height: 55vh;
    }

    .page-home .right-panel {
        height: 35vh;
    }
}

@media (max-width: 400px) {
    .page-home .right-panel > .logo_mobile {
        margin-top: 1rem;
        margin-left: 1rem;
        display: block;
    }
    .page-home .right-panel > .logo_mobile > img {
        width: 150px;
    }

    .page-home .main-title {
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
        text-align:left;
        width: 343px;
    }

    .page-home .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align:left;
    }

    .page-home .btn-custom {
        padding: 0.5rem;
        font-size: 1.05rem;
        width: 50%;
    }

}

/* =========================================
   Responsive Header Override
   ========================================= */
@media (max-width: 992px) {
    .header-logo {
        display: block;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }
}


/* =========================================
   Page: Login (login_1.html) & Register (register.html)
   ========================================= */
.page-login .login-section,
.page-register .register-section {
    min-height: 100vh;
    display: flex;
}

.page-login .left-panel,
.page-register .left-panel {
    padding-top: 0px !important;
}

.page-login .left-panel,
.page-register .left-panel {
    background: white;
    /* padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center; */
}

.page-login .logo-mobile,
.page-register .logo-mobile {
    display: none;
    margin-bottom: 40px;
}

.page-register .logo-section {
    margin-bottom: 40px;
}

.page-register .logo-section img {
    max-width: 250px;
}

.page-login .login-content,
.page-register .register-content {
    max-width: 500px;
}

.page-login .page-title,
.page-register .page-title {
    margin-top: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.page-login .page-title {
    color: var(--syngenta-green);
    font-family: 'Roca', sans-serif;
}

.page-register .page-title {
    color: var(--syngenta-blue);
    font-size: 2.8rem;
}

.page-login .page-subtitle,
.page-register .page-subtitle {
    font-size: 1.4rem;
    color: var(--syngenta-gray);
    margin-bottom: 40px;
    line-height: 1;
}

.page-login .page-subtitle strong,
.page-register .page-subtitle strong {
    font-weight: 600;
}

/* Login specific form elements */
.page-login .password-wrapper {
    position: relative;
}

.page-login .forgot-password {
    text-align: right;
    margin-top: 8px;
}

.page-login .forgot-password a {
    color: var(--syngenta-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.page-login .forgot-password a:hover {
    color: var(--syngenta-green-hover);
}

.page-login .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.page-login .checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.page-login .checkbox-group label {
    font-size: 0.9rem;
    color: var(--syngenta-gray);
    cursor: pointer;
    margin: 0;
}

.page-login .btn-submit,
.page-register .btn-submit {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    width: 190px;
}

.page-login .btn-submit {
    background: var(--syngenta-green);
    margin-bottom: 30px;
}

.page-login .btn-submit:hover {
    background: var(--syngenta-green-hover);

}

.page-register .btn-submit {
    background: var(--syngenta-blue);
}

.page-register .btn-submit:hover {
    background: var(--syngenta-blue-hover);
}

.page-login .register-link {
    text-align: center;
    font-size: 0.95rem;
    color: #666666;
}

.page-login .register-link a {
    color: var(--syngenta-blue);
    text-decoration: none;
    font-weight: 600;
}

.page-login .register-link a:hover {
    color: var(--syngenta-green-hover);
}

.page-register .divider {
    height: 1px;
    background: #d1d5db;
    margin: 35px 0;
}

.page-register .contact-info {
    font-size: 0.95rem;
    color: var(--syngenta-gray);
    line-height: 1.8rem;
    margin-bottom: 35px;
}

.page-register .contact-buttons {
    text-align: left;
}

.page-register .contact-info a {
    color: var(--syngenta-gray);
    text-decoration: underline;
    font-weight: 500;
}

.page-register .contact-info a:hover {
    color: var(--syngenta-blue);
}

.page-login .right-panel,
.page-register .right-panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Login/Register Responsive */
@media (max-width: 992px) {

    .page-login .login-section,
    .page-register .register-section {
        flex-direction: column;
    }

    .page-login .left-panel,
    .page-login .right-panel,
    .page-register .left-panel,
    .page-register .right-panel {
        width: 100% !important;
    }

    .page-login .right-panel,
    .page-register .right-panel {
        display: none;
    }

    .page-login .left-panel,
    .page-register .left-panel {
        padding: 50px 30px;
        min-height: calc(100vh - 70px);
    }

    .page-login .logo-mobile,
    .page-register .logo-mobile {
        display: block;
    }

    .page-register .logo-section {
        display: none;
    }

    .page-login .page-title {
        font-size: 2.5rem;
    }

    .page-register .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {

    .page-login .left-panel,
    .page-register .left-panel {
        padding: 40px 25px;
    }

    .page-login .page-title,
    .page-register .page-title {
        font-size: 2rem;
    }

    .page-login .page-subtitle,
    .page-register .page-subtitle {
        font-size: 0.95rem;
    }

    .page-login .btn-submit,
    .page-register .btn-submit {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .page-login .btn-submit {
        display: block;
        margin: 0 auto 30px auto;
    }

    .page-register .contact-info {
        font-size: 0.9rem;
    }

    .page-register .contact-buttons {
        text-align: center;
    }

}


/* =========================================
   Page: Catalog (catalog_3.html)
   ========================================= */
.page-catalog .catalog-section {
    padding: 80px 0;
    min-height: calc(100vh - 70px);
}

.page-catalog .catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-catalog .catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-catalog .catalog-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--syngenta-gray);
    margin-bottom: 20px;
}

.page-catalog .catalog-subtitle {
    font-size: 1.1rem;
    color: var(--syngenta-light-gray);
}

.page-catalog .carousel-wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-catalog .swiper {
    width: 100%;
    padding: 0;
}

.page-catalog .swiper-slide {
    height: auto;
}

.page-catalog .swiper-button-prev,
.page-catalog .swiper-button-next {
    position: static !important;
    width: 40px;
    height: 40px;
    background: none;
    color: var(--syngenta-gray);
    transition: all 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}

.page-catalog .swiper-button-prev:after,
.page-catalog .swiper-button-next:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.page-catalog .swiper-button-prev:hover,
.page-catalog .swiper-button-next:hover {
    color: var(--syngenta-blue);
    transform: scale(1.1);
}

.page-catalog .swiper-button-disabled {
    color: #d1d5db !important;
    opacity: 0.5;
}

.page-catalog .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.page-catalog .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.page-catalog .swiper-pagination-bullet-active {
    background: var(--syngenta-blue);
    width: 30px;
    border-radius: 6px;
}

.page-catalog .category-card {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* .page-catalog .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
} */

.page-catalog .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease; 
    filter: brightness(0.6);
}

.page-catalog .category-card:hover img {
    filter: brightness(1); 
}

.page-catalog .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

/* Capa oscura por defecto */
.page-catalog .category-overlay::after { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    transition: opacity 0.3s ease;
}

/* Al hacer hover, la capa oscura desaparece */
.page-catalog .category-overlay:hover::after {
    opacity: 0;
} 

/* Opcional: zoom suave en la imagen */
.page-catalog .category-overlay:hover img {
    transform: scale(1.05);
}

.page-catalog .category-name {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); */
    width: 100%;
}

/* Catalog Media Queries */
@media (min-width: 1400px) {
    .page-catalog .category-card {
        height: 600px;
    }

    .page-catalog .category-name {
        font-size: 2.8rem;
    }
}

@media (min-width: 1600px) {
    .page-catalog .category-card {
        height: 450px;
    }

    .page-catalog .category-name {
        font-size: 3rem;
    }
}

@media (max-width: 1200px) {
    .page-catalog .category-card {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .page-catalog .catalog-section {
        padding: 50px 0;
    }

    .page-catalog .catalog-container {
        padding: 0 20px;
    }

    .page-catalog .catalog-title {
        font-size: 2.5rem;
    }

    .page-catalog .catalog-subtitle {
        font-size: 1rem;
    }

    .page-catalog .carousel-wrapper {
        gap: 20px;
    }

    .page-catalog .swiper-button-prev,
    .page-catalog .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .page-catalog .swiper-button-prev:after,
    .page-catalog .swiper-button-next:after {
        font-size: 2rem;
    }

    .page-catalog .category-card {
        height: 520px;
    }

    .page-catalog .category-name {
        font-size: 3rem;
    }
}

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

    .page-catalog .catalog-header {
        margin-bottom: 20px;
    }

    .page-catalog .catalog-title {
        font-size: 2rem;
    }

    .page-catalog .catalog-subtitle {
        font-size: 1.1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-catalog .carousel-wrapper {
        gap: 5px;
    }

    .page-catalog .swiper-button-prev,
    .page-catalog .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .page-catalog .swiper-button-prev:after,
    .page-catalog .swiper-button-next:after {
        font-size: 1.5rem;
    }

    .page-catalog .category-card {
        height: 480px;
    }

    .page-catalog .category-overlay {
        padding: 30px 20px;
    }

    .page-catalog .category-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 400px) {
    .page-catalog .category-card {
        height: 400px;
    }

    .page-catalog .category-name {
        font-size: 2rem;
    }
}


/* =========================================
   Page: Account & Settings (my-account.html, settings.html)
   ========================================= */
.page-account .account-section,
.page-settings .account-section {
    display: flex;
    /* min-height: calc(100vh - 70px); */
    min-height: 100vh;
}

.page-account .sidebar-left,
.page-settings .sidebar-left {
    width: 350px;
    background: var(--syngenta-blue);
    padding: 60px 0px 60px 50px;
    display: flex;
    flex-direction: column;
}

.page-account .greeting,
.page-settings .greeting {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--syngenta-lime);
    margin-bottom: 10px;
}

.page-account .user-name,
.page-settings .user-name {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--syngenta-lime);
    margin-bottom: 40px;
}

.page-account .sidebar-divider,
.page-settings .sidebar-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    background-color: var(--syngenta-lime);
}

.page-account .sidebar-menu,
.page-settings .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.page-account .menu-item,
.page-settings .menu-item {
    font-size: 1.05rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
}

.page-account .menu-item:hover,
.page-settings .menu-item:hover {
    color: var(--syngenta-lime);
}

.page-account .menu-item.active,
.page-settings .menu-item.active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.page-account .sidebar-footer,
.page-settings .sidebar-footer {
    margin-top: auto;
}

.page-account .terms-link,
.page-settings .terms-link {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    display: block;
}

.page-account .terms-link:hover,
.page-settings .terms-link:hover {
    color: var(--syngenta-lime);
}

.page-account .content-area,
.page-settings .content-area {
    flex: 1;
    background: #e8e8e8;
    padding: 60px 80px 80px;
    overflow-y: auto;
}

.page-account .page-title,
.page-settings .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--syngenta-gray);
    margin-bottom: 40px;
}

/* Account Cards */
.page-account .points-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 660px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.page-account .points-label {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--syngenta-gray);
    margin-bottom: 12px;
}

.page-account .points-value {
    font-size: 5rem;
    font-weight: 700;
    color: var(--syngenta-green);
    line-height: 1;
}

.page-account .activity-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    margin: 0 auto;
    max-width: 660px;
    margin-bottom: 40px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.page-account .activity-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.page-account .activity-subheader-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.page-account .activity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--syngenta-gray);
}

.page-account .activity-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    margin-top: 0;
}

.page-account .view-all-link {
    font-size: 0.95rem;
    color: #666666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.page-account div.activity-card>div.activity-header>div.activity-subheader-row>div.activity-view-all>a>i {
    padding: 4px;
    background-color: #E2E2E2;
    border-radius: 6px;
}

.page-account .view-all-link:hover {
    color: var(--syngenta-blue);
}

.page-account .transaction-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-account .transaction-item {
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.page-account .transaction-item.redeemed {
    background: #EFF2EA;
}

.page-account .transaction-item.credited {
    background: #DFEAF7;
}

.page-account .transaction-info {
    flex: 1;
}

.page-account .transaction-type {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666666;
    margin-bottom: 4px;
}

.page-account .transaction-product {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--syngenta-gray);
    margin-bottom: 4px;
}

.page-account .transaction-date {
    font-size: 0.875rem;
    color: #888888;
}

.page-account .transaction-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.page-account .transaction-points {
    font-size: 1.125rem;
    font-weight: 700;
    text-align: right;
    text-align: right;
    color: var(--syngenta-gray);
}

.page-account .transaction-badge {
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.page-account .badge-redeemed {
    background: var(--syngenta-green);
}

.page-account .badge-credited {
    background: var(--syngenta-blue);
}

.page-account .action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-account .btn-action {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 190px;
    font-family: 'Montserrat SemiBold', sans-serif;
}

.page-account .btn-redeem {
    background: var(--syngenta-green);
    color: #ffffff;
}

.page-account .btn-redeem:hover {
    background: var(--syngenta-green-hover);
}

.page-account .btn-table {
    background: var(--syngenta-blue);
    color: #ffffff;
}

.page-account .btn-table:hover {
    background: var(--syngenta-blue-hover);
}

/* Settings Cards */
.page-settings .password-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.page-settings .card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--syngenta-gray);
    margin-bottom: 30px;
}

.page-settings .btn-change-password {
    padding: 14px 50px;
    background: var(--syngenta-green);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
}

.page-settings .btn-change-password:hover {
    background: var(--syngenta-green-hover);
}

/* Account/Settings Responsive */
.page-account .mobile-account-toggle,
.page-settings .mobile-account-toggle {
    display: none;
}

@media (max-width: 992px) {

    .page-account .account-section,
    .page-settings .account-section {
        flex-direction: column;
    }

    .page-account .sidebar-left,
    .page-settings .sidebar-left {
        display: none;
    }

    .page-account .mobile-account-toggle,
    .page-settings .mobile-account-toggle {
        display: block;
        background: #ffffff;
        padding: 20px;
        margin: -30px -20px 20px -20px;
        border-bottom: 1px solid #d0d0d0;
        cursor: pointer;
    }

    .page-account .toggle-header,
    .page-settings .toggle-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .page-account .toggle-title,
    .page-settings .toggle-title {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
        width: 100%;
        color: var(--syngenta-gray);
    }

    .page-account .toggle-icon,
    .page-settings .toggle-icon {
        font-size: 1.5rem;
        color: #666666;
        transition: transform 0.3s ease;
    }

    .page-account .toggle-icon.active,
    .page-settings .toggle-icon.active {
        transform: rotate(180deg);
    }

    .page-account .toggle-content,
    .page-settings .toggle-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .page-account .toggle-content.active,
    .page-settings .toggle-content.active {
        max-height: 300px;
        margin-top: 20px;
    }

    .page-account .content-area,
    .page-settings .content-area {
        width: 100%;
        padding: 40px 20px 60px;
    }

    .page-account .page-title,
    .page-settings .page-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .page-account .points-card {
        padding: 32px 24px;
        margin-bottom: 24px;
    }

    .page-account .points-label {
        font-size: 1.05rem;
    }

    .page-account .points-value {
        font-size: 4.5rem;
    }

    .page-account .activity-card {
        padding: 28px 20px;
        margin-bottom: 32px;
    }

    .page-account .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .page-account .activity-title {
        font-size: 1.3rem;
    }

    .page-account .transaction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .page-account .transaction-right {
        width: 100%;
        justify-content: space-between;
    }

    .page-account .transaction-points {
        text-align: left;
        min-width: auto;
    }

    .page-account .action-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .page-account .btn-action {
        width: 190px;
        padding: 15px 40px;
        font-size: 1.05rem;
    }

    .page-settings .password-card {
        padding: 32px 24px;
    }

    .page-settings .card-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .page-settings .form-group {
        margin-bottom: 20px;
    }

    .page-settings .btn-change-password {
        width: 100%;
        margin: 32px 0 0;
    }
}

@media (max-width: 576px) {

    .page-account .content-area,
    .page-settings .content-area {
        padding: 30px 15px 50px;
    }

    .page-account .page-title,
    .page-settings .page-title {
        font-size: 1.5rem;
    }

    .page-account .points-card {
        padding: 28px 20px;
    }

    .page-account .points-value {
        font-size: 4rem;
    }

    .page-account .activity-card {
        padding: 24px 16px;
    }

    .page-account .activity-title {
        font-size: 1.2rem;
    }

    .page-account .transaction-item {
        padding: 18px 16px;
    }

    .page-account .transaction-product {
        font-size: 1rem;
    }

    .page-account .transaction-points {
        font-size: 1.05rem;
        text-align: left;
        align-self: flex-start;
    }

    .page-account .transaction-badge {
        padding: 7px 16px;
        font-size: 0.8rem;
        align-self: start;
    }

    .page-account .btn-action {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .page-settings .password-card {
        padding: 28px 20px;
    }

    .page-settings .card-title {
        font-size: 1.15rem;
    }

    .page-settings .form-label {
        font-size: 0.9rem;
    }

    .page-settings .form-control-custom {
        padding: 11px 14px;
        font-size: 0.9rem;
    }

    .page-settings .btn-change-password {
        padding: 13px 30px;
        font-size: 1rem;
        margin: 28px auto;
        width: 250px;
        font-family: 'Montserrat SemiBold', Arial, sans-serif !important;
        
    }

    .page-account .transaction-item {
        gap:5px;
    }
}

/* =========================================
   Page: Contact (contact_2.html)
   ========================================= */
.page-contact .contact-section {
    display: flex;
    min-height: calc(100vh - 70px);
}

.page-contact .left-panel-contact {
    width: 50%;
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-contact .logo-contact {
    margin-bottom: 140px;
    order: 0;
}

.page-contact .contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--syngenta-blue);
    line-height: 1.2;
    margin-bottom: 0;
}

.page-contact .contact-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    color: #008F57;
    line-height: 1.2;
    margin-bottom: 90px;
}

.page-contact .contact-header {
    order: 1;
}

.page-contact .contact-divider {
    width: 100%;
    height: 1px;
    background: #d0d0d0;
    margin-bottom: 40px;
    order: 2;
}

.page-contact .contact-info {
    order: 3;
}

.page-contact .contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.page-contact .contact-info-item i {
    font-size: 1.4rem;
    color: var(--syngenta-gray);
    width: 24px;
}

.page-contact .contact-info-text {
    font-size: 1.05rem;
    color: var(--syngenta-gray);
    text-decoration: none;
}

.page-contact .contact-info-text:hover {
    color: var(--syngenta-blue);
}

.page-contact .right-panel-contact {
    width: 50%;
    background-image: url('../uploads/bg-contacto.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.page-contact .form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.page-contact .form-mobile {
    display: none;
    order: 4;
}

.page-contact textarea.form-control-custom {
    min-height: 100px;
    resize: vertical;
}

.page-contact .btn-submit-contact {
    padding: 14px 50px;
    background: #ffffff;
    color: var(--syngenta-blue);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s !important;
    font-family: 'Montserrat SemiBold', sans-serif;
    display: block;
    margin: 30px auto 0;
}

.page-contact .btn-submit-contact:hover {
    background: var(--syngenta-blue);
    transform: translateY(-2px) !important;
    color:#ffffff;
}

@media (min-height: 1079px) {
    .page-contact .logo-contact {
        margin-bottom: 160px;
    }
    .page-contact .contact-subtitle {
        margin-bottom: 200px;
    }
}

/* Contact Responsive */
@media (max-width: 992px) {
    .page-contact .contact-section {
        flex-direction: column;
    }

    .page-contact .left-panel-contact,
    .page-contact .right-panel-contact {
        width: 100%;
    }

    .page-contact .right-panel-contact {
        display: none;
    }

    .page-contact .form-mobile {
        display: block;
    }

    .page-contact .left-panel-contact {
        padding: 50px 30px 60px;
    }

    .page-contact .logo-contact {
        display: none;
    }

    .page-contact .contact-header {
        order: 1;
    }

    .page-contact .form-mobile {
        display: block;
        order: 2;
    }

    .page-contact .contact-divider {
        order: 3;
        margin: 0 0 30px 0;
    }

    .page-contact .contact-info {
        order: 4;
    }

    .page-contact .contact-title,
    .page-contact .contact-subtitle {
        font-size: 2.8rem;
        text-align: center;
    }

    .page-contact .contact-subtitle {
        margin-bottom: 40px;
    }

    .page-contact .contact-divider {
        margin: 40px 0;
    }

    .page-contact .contact-info-item {
        justify-content: center;
    }

    .page-contact .form-card {
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }

    .page-contact .btn-submit-contact {
        width: 190px;
        margin: 30px auto;
    }
}

@media (max-width: 576px) {
    .page-contact .left-panel-contact {
        padding: 40px 20px 50px;
    }

    .page-contact .contact-title,
    .page-contact .contact-subtitle {
        font-size: 2.3rem;
    }

    .page-contact .contact-info-item {
        font-size: 0.95rem;
        justify-content: flex-start;
    }

    .page-contact .contact-info-item i {
        font-size: 1.2rem;
    }

    .page-contact .form-control-custom {
        padding: 11px 14px;
        font-size: 0.9rem;
    }

    .page-contact .btn-submit-contact {
        padding: 13px 40px;
        font-size: 1rem;
        background: #198754 !important;
        color: #ffffff !important;
    }

    .page-contact .btn-submit-contact:hover {
        background: #157347 !important;
        color: #ffffff !important;
    }

    
}


/* =========================================
   Page: FAQ (faq.html)
   ========================================= */
.page-faq .faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.page-faq .section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 60px;
}

.page-faq .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-faq .accordion-item-custom {
    border: none;
    background: transparent;
}

.page-faq .accordion-header {
    /* background: #f5f5f5; */
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 24px 60px 24px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;

}

.page-faq .accordion-header:hover {
    background: #ebebeb;
}

.page-faq .accordion-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--syngenta-gray);
    margin: 0;
    text-align: left;
}

.page-faq .accordion-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-faq .accordion-icon i {
    font-size: 1.1rem;
    color: #666666;
    transition: transform 0.3s ease;
}

.page-faq .accordion-item-custom.active .accordion-icon {
    background: #2eaf3f;
}

.page-faq .accordion-item-custom.active .accordion-icon i {
    color: #ffffff;
    transform: rotate(45deg);
}

.page-faq .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.page-faq .accordion-item-custom.active .accordion-content {
    max-height: 500px;
    margin-top: 12px;
}

.page-faq .accordion-answer {
    background: #EFF2EA;
    border-radius: 8px;
    padding: 24px 60px 24px 24px;
    position: relative;
}

.page-faq .accordion-answer-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    padding-right: 2rem;
}

/* .page-faq .accordion-close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 32px;
    height: 32px;
    background: #2eaf3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
} */
.page-faq .accordion-close {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 36px;
    height: 36px;
    background: var(--syngenta-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.page-faq .accordion-close:hover {
    background: var(--syngenta-green-hover);
}

.page-faq .accordion-close i {
    font-size: 0.9rem;
    color: #ffffff;
}

/* FAQ Responsive */
@media (max-width: 992px) {
    .page-faq .faq-section {
        padding: 60px 20px 80px;
    }

    .page-faq .section-title {
        font-size: 2.8rem;
    }

    .page-faq .accordion-header {
        padding: 20px 56px 20px 20px;
    }

    .page-faq .accordion-question {
        font-size: 1rem;
    }

    .page-faq .accordion-icon {
        right: 20px;
        width: 34px;
        height: 34px;
    }

    .page-faq .accordion-answer {
        padding: 20px 56px 20px 20px;
    }

    .page-faq .accordion-answer-text {
        font-size: 0.9rem;
    }

    .page-faq .accordion-close {
        right: 20px;
        top: 20px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .page-faq .faq-section {
        padding: 50px 35px 70px;
    }

    .page-faq .section-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }

    .page-faq .faq-accordion {
        gap: 16px;
    }

    .page-faq .accordion-header {
        padding: 18px 52px 18px 18px;
    }

    .page-faq .accordion-question {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .page-faq .accordion-icon {
        right: 18px;
        width: 32px;
        height: 32px;
    }

    .page-faq .accordion-icon i {
        font-size: 1rem;
    }

    .page-faq .accordion-answer {
        padding: 18px 52px 18px 18px;
    }

    .page-faq .accordion-answer-text {
        font-size: 0.875rem;
        line-height: 1.65;
    }

    .page-faq .accordion-close {
        right: 18px;
        top: 18px;
        width: 28px;
        height: 28px;
    }

    .page-faq .accordion-close i {
        font-size: 0.85rem;
    }
}


/* =========================================
   Page: How It Works (how-it-works.html)
   ========================================= */
.page-how-it-works .how-it-works-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.page-how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-how-it-works .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--syngenta-gray);
    margin-bottom: 20px;
}

.page-how-it-works .section-subtitle {
    font-size: 1.125rem;
    color: var(--syngenta-light-gray);
    line-height: 1.6;
}

.page-how-it-works .section-subtitle strong {
    font-weight: 600;
}

.page-how-it-works .steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-how-it-works .step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.page-how-it-works .step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--syngenta-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--syngenta-lime);

}

.page-how-it-works .step-content {
    flex: 1;
    background: #e3f0fb;
    border-radius: 16px;
    padding: 32px 36px;
    transition: transform 0.3s ease;
}

.page-how-it-works .step-icon {
    font-size: 1.75rem;
    color: var(--syngenta-gray);
    margin-bottom: 12px;
    display: block;
}

.page-how-it-works .step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--syngenta-light-gray);
    margin-bottom: 10px;
}

.page-how-it-works .step-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

/* How It Works Responsive */
@media (max-width: 992px) {
    .page-how-it-works .how-it-works-section {
        padding: 60px 20px 80px;
    }

    .page-how-it-works .section-title {
        font-size: 2.8rem;
    }

    .page-how-it-works .section-subtitle {
        font-size: 1.05rem;
    }

    .page-how-it-works .section-header {
        margin-bottom: 50px;
    }

    .page-how-it-works .steps-container {
        gap: 40px;
    }

    .page-how-it-works .step-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-how-it-works .step-number {
        width: 75px;
        height: 75px;
        font-size: 2.75rem;
    }

    .page-how-it-works .step-content {
        text-align: center;
        padding: 30px 28px;
        width: 100%;
    }

    .page-how-it-works .step-icon {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }

    .page-how-it-works .step-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .page-how-it-works .step-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .page-how-it-works .how-it-works-section {
        padding: 50px 35px 70px;
    }

    .page-how-it-works .section-title {
        font-size: 2.3rem;
    }

    .page-how-it-works .section-subtitle {
        font-size: 1rem;
    }

    .page-how-it-works .section-header {
        margin-bottom: 40px;
    }

    .page-how-it-works .steps-container {
        gap: 35px;
    }

    .page-how-it-works .step-number {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .page-how-it-works .step-content {
        padding: 26px 22px;
    }

    .page-how-it-works .step-icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .page-how-it-works .step-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .page-how-it-works .step-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* =========================================
   Page: Category (category-*.html)
   ========================================= */
.page-category .hero-banner {
    height: 210px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin: 40px auto 50px;
    max-width: 1320px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.page-category .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)); */
    background-color: rgba(0, 0, 0, 0.3); 
}

.page-category .hero-banner:hover::before {
    opacity: 0;
}

.page-category .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.page-category .hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.page-category .hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.page-category .products-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.page-category .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.page-category .product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    padding-right: 25px;
}

/* .page-category .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} */

.page-category .product-image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #ffffff;
    /* border-bottom: 1px solid #f0f0f0; */
}

.page-category .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    border: 1px solid #DADADA;
    border-radius: 25px;
    /* padding: 25px; */
}

.page-category .product-info {
    /* padding: 24px 20px 28px; */
    padding: 25px 0px;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page-category .product-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--syngenta-blue);
    margin-bottom: 8px;
    line-height: 1;
    text-align: center;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-category .product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--syngenta-blue);
    margin-bottom: 20px;
    text-align: center;
}

.page-category .btn-canjear {
    width: 100% !important;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    
}


/* Category Responsive */
@media (max-width: 1200px) {
    .page-category .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .page-category .hero-banner {
        height: 180px;
        margin: 30px 20px 40px;
        border-radius: 20px;
    }

    .page-category .hero-title {
        font-size: 3rem;
    }

    .page-category .hero-subtitle {
        font-size: 1rem;
    }

    .page-category .products-section {
        padding: 0 20px 60px;
    }

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

    .page-category .product-info {
        padding: 20px 16px 24px;
    }

    .page-category .product-name {
        font-size: 0.95rem;
        min-height: 40px;
    }

    .page-category .product-price {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }

    .page-category .btn-canjear {
        padding: 13px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .page-category .hero-banner {
        height: 160px;
        margin: 20px 15px 30px;
        border-radius: 16px;
    }

    .page-category .hero-title {
        font-size: 2.5rem;
    }

    .page-category .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-category .products-section {
        padding: 0 15px 50px;
    }

    .page-category .products-grid {
        gap: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-category .product-card {
        padding-left: 5px;
        padding-right: 5px;
    }

    .page-category .product-image {
        padding: 20px;
    }

    .page-category .product-info {
        padding: 18px 14px 22px;
    }

    .page-category .product-name {
        font-size: 0.9rem;
        min-height: 38px;
    }

    .page-category .product-price {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .page-category .btn-canjear {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* =========================================
   Page: Canje (canje.html)
   ========================================= */
.page-canje .canje-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.page-canje .canje-hero {
    text-align: center;
    margin-bottom: 60px;
}

.page-canje .canje-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-canje .canje-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Product Gallery */
.page-canje .product-gallery {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    /* Removed shadow */
    box-shadow: none;
    height: 100%;
    aspect-ratio: 1 / 1;
    /* Force square */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-canje .swiper {
    width: 100%;
    height: 100%;
    /* padding-bottom removed to let flex center align everything, pagination can overlay or be adjusted */
    padding-bottom: 30px;
}

.page-canje .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.page-canje .swiper-slide img {
    max-width: 90%;
    /* Prevent touching edges */
    max-height: 90%;
    object-fit: contain;
}

.page-canje .swiper-pagination {
    bottom: 0px !important;
    /* Position at absolute bottom of container */
}

.page-canje .swiper-pagination-bullet-active {
    background: #4a4a4a;
}

/* Custom Navigation Outside */
.page-canje .custom-swiper-next,
.page-canje .custom-swiper-prev {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    z-index: 10;
    cursor: pointer;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.page-canje .custom-swiper-next {
    right: -25px;
}

.page-canje .custom-swiper-prev {
    left: -25px;
}

.page-canje .custom-swiper-next:after,
.page-canje .custom-swiper-prev:after {
    content: '';
    /* Remove default swiper arrow content if present */
}

/* Product Details */
.page-canje .product-details {
    padding: 0 20px;
}

.page-canje .product-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--syngenta-gray);
    margin-bottom: 15px;
}

.page-canje .product-code-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #555555;
    font-weight: 500;
    margin-bottom: 30px;
}

.page-canje .price-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--syngenta-green);
    margin-bottom: 5px;
}

.page-canje .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--syngenta-green);
    margin-bottom: 30px;
}

.page-canje .quantity-section {
    margin-bottom: 30px;
}

.page-canje .quantity-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--syngenta-gray);
    margin-bottom: 10px;
}

.page-canje .quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Space between elements */
    border: none;
    background: transparent;
}

.page-canje .qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    /* Light gray background */
    border-radius: 8px;
    /* Rounded corners */
    font-size: 1.2rem;
    color: var(--syngenta-gray);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-canje .qty-btn:hover {
    background: #e0e0e0;
}

.page-canje .qty-input {
    width: 45px;
    height: 45px;
    border: 1px solid #f5f5f5;
    /* Subtle border for input */
    border-radius: 8px;
    background: #f5f5f5;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--syngenta-gray);
}

.page-canje .product-description {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
}

/* Shipping Form */
.page-canje .shipping-form-container {
    background: #ffffff;
    /* border-radius: 20px; box-shadow if needed, design looks clean/flat */
    padding-left: 20px;
}

.page-canje .shipping-form-container .form-control-sm {
        padding: .5rem;
        font-size: 1rem;
}

.page-canje .shipping-form-container .form-select-sm {
    padding-top: .5rem;
    padding-bottom: 0.5rem;
    padding-left: .5rem;
    font-size: 1rem;
}

.page-canje .form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--syngenta-gray);
    margin-bottom: 25px;
}

.page-canje #beneficiaryCheck:checked {
    background-color: var(--syngenta-blue) !important;
    border-color: var(--syngenta-blue) !important;
}

.page-canje .form-label-sm {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555555;
    margin-bottom: 6px;
    display: block;
}

.page-canje .input-group-text {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #555555;
    font-size: 0.9rem;
}

.page-canje .small-text {
    font-size: 0.85rem;
    color: #666666;
}

.page-canje .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.page-canje .btn-canje-submit {
    flex: 1;
    background: #198754;
    /* Green */
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.page-canje .btn-canje-submit:hover {
    background: #157347;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-canje .btn-canje-cancel {
    flex: 1;
    background: var(--syngenta-blue);
    /* Blue */
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.page-canje .btn-canje-cancel:hover {
    background: #0b5ed7;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .page-canje .canje-container {
        padding: 40px 20px 60px;
    }

    .page-canje .canje-title {
        font-size: 2.5rem;
    }

    .page-canje .product-details,
    .page-canje .shipping-form-container {
        padding-left: 0;
        margin-top: 30px;
    }
}
@media (max-width: 576px) {
    .canje_info_producto {
        margin-bottom: 10px !important;
    }

    .page-canje .canje-hero {
        margin-bottom: 20px;
    }

    .page-canje .product-details, .page-canje .shipping-form-container {
        margin-top:10px;
    }
}

/* TABLE PAGE STYLES */
.page-table {
    background-color: #ffffff;
    min-height: 100vh;
}

.table-container {
    padding-top: 40px;
}

.table-title {
    font-size: 3rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 20px;
}

.table-subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.points-table-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    /* Hide outer scroll */
    max-width: 1000px;
    margin: 0 auto;
}

.points-table-scroll {
    max-height: 500px;
    /* Slim scroll height */
    overflow-y: auto;
    overflow-x: auto;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 #f1f1f1;
}

@media (max-width: 576px) {
    .table-subtitle {
        padding:0 10px;
    }
}

/* Webkit Scrollbar */
.points-table-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.points-table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.points-table-scroll::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 4px;
}

.points-table-scroll::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.points-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.points-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #F0F2E9;
    /* Light greenish/beige from image */
}

.points-table thead th {
    background-color: #F0F2E9;
    /* Ensure bg sticks */
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #444;
    /* Dark gray text */
    text-align: left;
    white-space: nowrap;
    border-bottom: none;
}

.points-table tbody td {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #eeeeee;
}

.points-table tbody tr:last-child td {
    border-bottom: none;
}

.points-table tbody tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .table-title {
        font-size: 2.2rem;
    }
}

/* =========================================
   Mobile Navigation Menu
   ========================================= */
.mobile-nav-header {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    padding: 15px 20px;
    z-index: 1000;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(8, 76, 161, 0.98);
    flex-direction: column;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 12px;
}

.mobile-nav .nav-item:hover {
    color: #DAFF00;
    padding-left: 10px;
}

.mobile-nav .nav-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Mobile Menu Visible Only on Mobile Devices */
@media (max-width: 992px) {
    .mobile-nav-header {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
}

/* Canje Page - Mobile */
@media (max-width: 576px) {
    .page-canje .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}