/* custom style for Home page */
:root {
    --primary: #D12D4D;
    --accent: #D12D4D;
    --dark: #0f0f13;
    --muted: #6b7280;
    --radius: 14px;
    font-family: sans-serif, "Poppins", Verdana, Arial;
}

.montserrat-100 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.montserrat-200 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.montserrat-300 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.montserrat-400 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.montserrat-500 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.montserrat-600 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.montserrat-700 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.montserrat-800 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.montserrat-900 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    color: #111;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(11, 11, 11, 0.04)
}

/* .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    height: 38px
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center
}

.nav-links a {
    padding: 6px 8px;
    border-radius: 6px;
    color: #222;
    font-weight: 600
}

.btn-quote {
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 24px rgba(184, 31, 59, 0.12)
} */

/* Hero */
.hero {
    position: relative;
    min-height: 420px;
    background-image: linear-gradient(90deg, rgba(12, 12, 12, 0.55), rgba(184, 31, 59, 0.25)), url('assets/images/hero-design.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    display: flex;
    align-items: center
}

.hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    justify-content: space-between;
    width: 100%
}

.hero-copy {
    max-width: 640px
}

.hero h1 {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 12px
}

.hero h1 span {
    color: var(--primary)
}

.lead {
    font-size: 20px;
    margin-bottom: 18px;
    opacity: 0.95
}

.hero-cta {
    display: flex;
    gap: 12px;
    align-items: center
}

.hero-cta .btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px
}

.dots {
    margin-top: 18px;
    display: flex;
    gap: 8px
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45)
}

/* services cards */
.section {
    padding: 64px 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start
}

.service {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
    border: 1px solid #eee
}

.service img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.service-body {
    padding: 18px
}

.service-body h5 {
    margin: 0 0 8px
}

.service-body p {
    color: var(--muted);
    font-size: 14px
}

.service-cta {
    display: inline-block;
    margin-top: 10px;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px
}

/* certifications */
.certs {
    text-align: center;
    padding: 36px 0;
}

.cert-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* spacing between logos */
    flex-wrap: nowrap;
    /* keeps them in one line */
}

.cert-row img {
    height: 58px;
    object-fit: contain;
}


/* about red block */
.about {
    background: var(--primary);
    color: #fff;
    padding: 48px 0;
    border-radius: 6px
}

.about .container {
    display: flex;
    gap: 28px;
    align-items: flex-start
}

.about p {
    opacity: 0.95;
    line-height: 1.8
}

/* contact form & map */
.contact-row {
    display: flex;
    gap: 28px;
    align-items: flex-start
}

.map {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted)
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 8px
}

.form-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06)
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    margin-bottom: 12px;
    font-size: 14px
}

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    width: 100%
}

/* CTA banner */
.cta-banner {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.48)), url('/assets/home-ship-bg.png');
    background-position: center;
    background-size: cover;
    padding: 150px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    /* remove excess margin */
    position: relative;
    z-index: 2;
    transform: translateY(20%);

}

.cta-banner-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
}

/* MOBILE / SMALLER TABLET ADJUSTMENTS */
@media (max-width: 480px) {
    .cta-banner {
        min-height: 360px;
        padding: 100px 18px;
        border-radius: 10px;
    }

    .cta-title {
        /* slightly smaller, tighter */
        font-size: clamp(22px, 8.5vw, 44px);
        max-width: 210px;
    }

    .cta-btn {
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
}

/* IPAD / SMALL LAPTOP */
@media (min-width: 481px) and (max-width: 1024px) {
    .cta-banner {
        min-height: 420px;
        padding: 100px 28px;
    }

    .cta-title {
        font-size: clamp(20px, 6.5vw, 52px);
        max-width: 230px;
    }
}

/* footer */
.footer {
    background: #0f0f10;
    color: #fff;
    padding: 28px 0
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px
}

.footer a {
    color: #fff;
    opacity: 0.9
}

.small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6)
}

/* responsive */
@media(max-width:1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:720px) {
    .hero {
        padding: 36px 0;
        min-height: 320px
    }

    .hero h1 {
        font-size: 28px
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .about .container {
        flex-direction: column
    }

    .contact-row {
        flex-direction: column
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .nav-links {
        display: none
    }
}



/* Hero override for Edible Oils */
.edible-hero {
    background-image: linear-gradient(90deg, rgba(12, 12, 12, 0.55), rgba(184, 31, 59, 0.25)), url('/assets/hero-01.png');
    background-size: cover;
    background-position: center;
    min-height: 420px;
    color: #fff;
}

/* Intro text */
.intro {
    padding: 40px 0;
    background: #b81f3b;
    color: #fff
}

.intro p {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.7
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* .product-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center
} */

#prevBtn,
#nextBtn {
    display: none !important;
}


.product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px
}

.product-card h5 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600
}

.product-card p {
    font-size: 14px;
    color: #555
}

/* Features row */
/* Figma-style features strip */
.features-bar {
    background: var(--primary);
    /* maroon background */
    padding: 36px 0;
}

.features-bar-inner {
    display: flex;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
    padding: 8px;
}

/* container grid (keeps your 3-up layout) */
.features-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px;
}

/* each card becomes a vertical block (title+icon row, then description) */
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.06);
    transition: transform .25s ease;
    display: block;
    /* IMPORTANT: not flex */
}

/* small hover lift */
.feature-card:hover {
    transform: translateY(-6px);
}

/* header row: title and icon in single horizontal line */
.feature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* title left, icon right on same row */
    gap: 12px;
    margin-bottom: 10px;
}

/* Title styling (can wrap to two lines if too long) */
.feature-title {
    font-size: 1.25rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.05;
    /* allow title to take remaining width but keep it visually left aligned */
    flex: 1 1 auto;
}

/* Icon (keeps it on same row) */
.feature-img {
    width: 60px;
    height: auto;
    flex: 0 0 auto;
    margin-left: 12px;
    opacity: 0.95;
}

/* Description sits on its own line below */
.feature-desc {
    margin: 0;
    margin-top: 6px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.45;
}

/* Responsive: stack cards 2-up on medium, 1-up on small */
@media (max-width: 1024px) {
    .features-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-img {
        width: 60px;
    }
}

@media (max-width: 720px) {
    .features-bar-inner {
        grid-template-columns: 1fr;
    }

    .feature-head {
        gap: 10px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-img {
        width: 50px;
    }

    .feature-card {
        padding: 18px;
    }
}


.btn-quote-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* space between text and arrow */
    background-color: #D12D4D;
    /* maroon */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* subtle hover effect */
.btn-quote-1:hover {
    background-color: #ff0040;
    /* darker maroon */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-quote-1:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* arrow styling */
.btn-quote-1 .arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.btn-quote-1:hover .arrow {
    transform: translateX(4px);
    /* arrow slides right */
}



/* right: banner image container */
.features-banner {
    flex: 1 1 420px;
    /* banner grows or shrinks */
    min-width: 100%;
    min-height: 900px;
    background-image: url('/assets/veg-section-bg.svg');
    /* <-- change path if you want a different image */
    background-size: contain;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.steel-banner {
    flex: 1 1 420px;
    /* banner grows or shrinks */
    min-width: 100%;
    min-height: 900px;
    background-image: url('/assets/Steel-Hero-Section.svg');
    /* <-- change path if you want a different image */
    background-size: contain;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.vegi-banner {
    flex: 1 1 420px;
    /* banner grows or shrinks */
    min-width: 100%;
    min-height: 900px;
    background-image: url('/assets/Edible-Hero-Section.svg');
    /* <-- change path if you want a different image */
    background-size: contain;
    /* background-position: center; */
    background-repeat: no-repeat;
}

@media (max-width: 980px) {
    .features-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-card {
        min-width: 100%;
        max-width: 640px;
    }

    .features-banner {
        width: 100%;
        min-height: 260px;
    }

    .steel-banner {
        width: 100%;
        min-height: 260px;
    }

    .vegi-banner {
        width: 100%;
        min-height: 260px;
    }
}

/* Responsive: stack cards on small screens */
@media (max-width: 880px) {
    .features-bar-inner {
        flex-direction: column;
        gap: 14px;
        padding: 12px;
    }

    .feature-card {
        max-width: 100%;
        min-width: auto;
    }
}


.feature {
    flex: 1;
    min-width: 220px
}

.feature h6 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700
}

.feature p {
    font-size: 14px;
    opacity: 0.9
}

/* Certifications row */
.cert-row {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping */
    gap: 40px;
    /* smaller gap for mobile */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.cert-row img {
    height: 100px;
    object-fit: contain;
    flex: 1 1 120px;
    /* each image takes min 120px width */
    max-width: 160px;
}

@media (max-width: 720px) {
    .cert-row {
        justify-content: center;
        gap: 20px;
    }

    .cert-row img {
        flex: 1 1 calc(50% - 20px);
        /* 2 per row */
        max-width: 45%;
        /* keep balanced */
    }
}




/* Page wrapper to demo the cutout waves on the sides */
.page-wrap {
    max-width: 1100px;
    margin: 36px auto 0;
}


/* Hero preview above footer */
.cta-hero {
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1507120878960-3c8a25e5b2d1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center
}


/* footer base */
.site-footer {
    background: var(--bg);
    color: #e6e6e6;
    padding-top: 28px
}


/* Wavy top: large centered SVG with left & right cutouts (matching screenshot) */
.footer-wave {
    position: relative;
    z-index: 0;
    margin-top: -60px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}


/* footer inner layout */
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 20px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}


.brand-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd36b, #c18a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.brand-badge svg {
    width: 22px;
    height: 22px;
}

.brand-title {
    color: #D12D4D;
    font-weight: 700;
    font-size: 18px;
}


.contact p {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.contact address {
    font-style: normal;
    margin-top: 8px;
    color: #cfcfcf;
    line-height: 1.5;
}


/* social */
.social-row {
    display: flex;
    gap: 12px;
    justify-self: end
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: transparent
}

.social-row svg {
    width: 18px;
    height: 18px;
    color: #e6e6e6
}


/* divider accent */
.accent-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-top: 18px;
    border-radius: 2px
}


/* bottom row */
.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    color: #9aa0a6;
    font-size: 13px
}

/* ---------- Footer: exact Figma layout & styling ---------- */
.figma-footer {
    background: #000;
    /* deep black */
    color: #e6e6e6;
    padding-top: 150px;
    padding-bottom: 36px;
    font-family: "Poppins", Verdana, Arial, sans-serif;
    line-height: 1.45;
}

/* container already exists in your CSS; ensures same max width */
.figma-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* columns */
.figma-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.figma-col--left {
    align-items: flex-start;
}

.figma-col--center {
    align-items: center;
    justify-content: center;
}

.figma-col--right {
    align-items: flex-end;
}

/* brand area */
.brand-line {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 6px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.25);
    background: transparent;
}

.brand-badge svg {
    width: 34px;
    height: 34px;
    display: block;
}

.brand-title {
    color: #b81f3b;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2px;
}

/* contact text */
.footer-contact .phones {
    font-weight: 700;
    color: #ffffff;
    margin-top: 6px;
    font-size: 16px;
}

.footer-address {
    font-style: normal;
    color: #cfcfcf;
    margin-top: 6px;
    line-height: 1.55;
}

/* center nav */
.footer-nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

.footer-nav__link {
    color: #dcdcdc;
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
}

/* social icons column */
.social-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}

.social-link {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.social-link svg {
    width: 14px;
    height: 14px;
    display: block;
    color: #fff;
}

/* dev credit */
.dev-credit {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #d1d1d1;
    font-size: 13px;
}

.dev-logo {
    height: 30px;
    display: inline-block;
}

/* divider (thin maroon line) */
.figma-footer__divider {
    height: 2px;
    background: linear-gradient(90deg, #D12D4D, rgba(184, 31, 59, 0.0));
    margin: 34px auto;
    width: calc(100% - 120px);
    border-radius: 2px;
}

/* bottom line (privacy on left, copyright on right) */
.figma-footer__bottom {
    max-width: 1100px;
    margin: 10px auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.policy-links {
    color: #cfcfcf;
    font-size: 13px;
}

.policy-links a {
    color: #cfcfcf;
    text-decoration: none;
    margin: 0 8px;
}

.policy-links .sep {
    color: #2b2b2b;
    margin: 0 8px;
}

.copyright {
    color: #c4c4c4;
    font-size: 13px;
}

/* responsive behavior */
@media (max-width: 900px) {
    .figma-footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .figma-col--left,
    .figma-col--center,
    .figma-col--right {
        align-items: center;
    }

    .figma-footer__divider {
        width: calc(100% - 40px);
    }

    .figma-footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .policy-links .sep {
        display: inline-block;
        color: #2b2b2b;
    }
}


/* responsives */
@media (max-width:900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center
    }

    .social-row {
        justify-content: center
    }

    .bottom-row {
        flex-direction: column;
        gap: 8px
    }
}


/* page side curves (dark margins) to match screenshot outer curves */
.outer-frame {
    background: #222;
    padding: 20px 28px
}

.outer-frame:before,
.outer-frame:after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    border-radius: 0 0 40px 40px;
    background: #222
}


/* MOBILE - styled Services select */
.mobile-services {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    /* change or remove if you want full-width */
    padding: 12px 44px 12px 16px;
    background-color: #ffffff;
    color: #111827;
    /* text color */
    border: 1px solid #e2e8f0;
    /* subtle border */
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) inset;
    position: relative;
    cursor: pointer;
}

/* custom caret using base64 SVG so no external assets required */
.mobile-services {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20'><path fill='%238B0000' d='M5.5 7.5l4.5 4.5 4.5-4.5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
}

/* make sure the select looks OK when focused */
.mobile-services:focus {
    outline: 3px solid rgba(214, 59, 88, 0.15);
    border-color: rgba(214, 59, 88, 0.5);
    box-shadow: 0 0 0 4px rgba(214, 59, 88, 0.06);
}

/* smaller screens tweak */
@media (max-width:420px) {
    .mobile-services {
        padding: 10px 44px 10px 12px;
        font-size: 14px;
    }
}