/*
Theme Name: La Petite Alice Retail Store
Theme URI: https://lapetitealice.com
Description: Child theme for Shoptimizer
Author: La Petite Alice
Template: shoptimizer
Version: 1.0.0
*/


/* =======================================================
   LPA CHILD THEME — STYLE SYSTEM
   =======================================================

   PURPOSE:
   - Keep only intentional overrides from Shoptimizer
   - Avoid random hacks / legacy styles
   - Structure styles by feature

   RULES:
   - If it's complex → move to plugin or component CSS
   - If unused → DELETE (no accumulation)
   - Always group logically

   ======================================================= */



/* =======================================================
   BASE STYLES
   ======================================================= */

body {
    /* Add ONLY intentional global tweaks */
}

h1, h2 {
    margin: 0px;
}

.page .entry-title {
    display: none;
}

body:has(:not(.woocommerce-breadcrumb)) .site-content {
    padding-top: 0px !important;
}

@media (max-width: 768px) {
    .keep-2-col-mobile {
        flex-wrap: nowrap !important;
    }

    .keep-2-col-mobile .wp-block-column {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.widget-title, .widget .widgettitle, .widget.widget_block h2 {
    font-family: Nunito;
    font-size: 16px;
    font-weight: 800;
  	letter-spacing: 1px;
}

dialog.shoptimizer-modal[data-shoptimizermodal-id="searchToggle"] form[method="dialog"] {
 	font-weight: 400;
    border-bottom: 0px;  
  	text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.1em;
  	padding: 0.85rem 1.8rem;
}


/* =========================================
   LPA — WooCommerce Notices (Elegant Style)
========================================= */

/* Base */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border: none;
    border-radius: 0px;
    padding: 15px 15px 15px 35px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 993px) {
    .single-product .woocommerce:has(.woocommerce-message) {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Remove default icons */
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
    display: none;
}

/* SUCCESS */
.woocommerce-message {
    background: #f4f7f4;
    color: #2f3e34;
}

/* ERROR */
.woocommerce-error {
    background: #f8f4f4;
    color: #4a2e2e;
}

/* INFO */
.woocommerce-info {
    background: #f4f5f7;
    color: #2f3540;
}

/* Links inside */
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: 0.2s;
}

/* Hover */
.woocommerce-message a:hover,
.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message .button:hover {
    color: #544844;
}

/* Remove "button" look */
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
    background: none !important;
    padding: 0;
    margin-left: 12px;
    font-size: 14px;
    text-transform: none;
    border: none;
    box-shadow: none;
    line-height: inherit;
}

/* Separator between links (View cart | Checkout) */
.woocommerce-message .button + .button::before {
    content: "|";
    margin: 0 10px;
    opacity: 0.4;
}

/* Align content nicely */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    gap: 12px;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-message .button + .button::before {
        display: none;
    }
}

/* =======================================================
   CATEGORY PAGE
   ======================================================= */

.woocommerce-breadcrumb {
	display: none;
}

.shoptimizer-sorting {
	display: none;
}
  
h1.woocommerce-products-header__title {
  	margin-top: 2rem;
    margin-bottom: 1.5rem;
  	text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.1em;
}


/* Product grid layout */

@media (min-width: 1024px) {
    ul.products li.product {
        position: relative;
        padding-right: 30px !important;
        padding-left: 30px !important;
    }
  
  	.no-cta-buttons ul.products li.product:not(.product-category) {
    	margin-bottom: 0px !important;
	}
}

/* Hide sorting */

.shoptimizer-sorting .woocommerce-ordering {
    display: none;
}

/* Infinite scroll load more info. */

body.lpa-loading-products::after {
    content: "Loading more products...";
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 16px;
    font-size: 14px;
    z-index: 9999;
}


/* =======================================================
   PRODUCT PAGE
   ======================================================= */

/* Remove default WooCommerce elements we don't use */

.product form.cart .quantity {
    display: none;
}

.woocommerce-tabs.wc-tabs-wrapper {
    display: none;
}

.product_meta {
    display: none;
}

.shoptimizer-product-prevnext {
    display: none;
}

/* General page style */

.product-details-wrapper {
    padding-bottom: 2rem;
    padding-top: 2rem;
}

@media (min-width: 993px) {
    .theme-shoptimizer.single-product div.product .summary {
        padding-top: 30px;
    }
}


/* Add to cart button (full width, consistent height) */

.cart .single_add_to_cart_button {
    float: left;
    width: 100%;
    height: 52px;
    margin-left: 0;
    padding: 0;
    border-radius: 2px;
    line-height: 52px;
    text-align: center;
    transition: 0.2s;
}


/* Attribute text styling */

.lpa-product-attribute {
    font-size: 14px;
}


/* =======================================================
   PRODUCT PAGE — LAYOUT ORDER
   ======================================================= */

/*
Reordering sections visually using flexbox order
(Shoptimizer layout override)
*/

.product-details-wrapper {
    order: 1;
}

.related-wrapper {
    order: 2;
}

.woocommerce-tabs {
    order: 3;
    margin: 0 !important;
    padding: 0 3% !important;
    background-color: #fff !important;
}


/* ============================= */
/* LPA SIZE GUIDE TABLE */
/* ============================= */

.lpa-size-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.lpa-size-table td:first-child,
.lpa-size-table th:first-child {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 2;
}

/* Header */
.lpa-size-table th {
    text-align: left;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f6f6f;
    padding: 8px 6px;
    border-bottom: 1px solid #e5e5e5;
}

/* Cells */
.lpa-size-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #ece7e1;
    color: #2b2b2b;
}

/* Remove last row border */
.lpa-size-table tr:last-child td {
    border-bottom: none;
}

/* Subtle hover (optional, very light) */
.lpa-size-table tr:hover td {
    background: #fafafa;
}

/* Align numbers nicely */
.lpa-size-table td:not(:first-child),
.lpa-size-table th:not(:first-child) {
    text-align: center;
}

/* First column slightly stronger */
.lpa-size-table td:first-child {
    font-weight: 500;
}

/* Mobile scroll */
.lpa-size-table {
    overflow-x: auto;
}

.lpa-size-table table {
    min-width: 700px;
}

@media (max-width: 768px) {

  .lpa-size-table table {
    font-size: 12px;
    min-width: 600px;
  }

  .lpa-size-table th,
  .lpa-size-table td {
    padding: 6px 6px;
  }

}


/* =======================================================
   RELATED PRODUCTS
   ======================================================= */

/* Section title */

.related-wrapper > section > h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding-top: 60px !important;
}


/* =======================================================
   UPSELL PRODUCTS
   ======================================================= */

/* Section title */

.upsells-wrapper > section > h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding-top: 60px !important;
}


/* Grid layout override */

.woocommerce div.product .upsells ul.products {
    display: flex;
    justify-content: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.woocommerce div.product .upsells ul.products li {
    float: none;
}


/* Layout order */

.upsells-wrapper {
    order: 2;
}


/* =======================================================
   RESPONSIVE ADJUSTMENTS
   ======================================================= */

@media (max-width: 992px) {

    .related-wrapper > section > h2,
    .upsells-wrapper > section > h2 {
        font-size: 16px;
    }

    .wpb_wrapper h3 {
        font-size: 16px;
    }

}

/* =============================
   SIDE CART
============================= */

.widget_shopping_cart .buttons .checkout:before {
    display: none;
}

.widget_shopping_cart .product_list_widget li a.remove:before {
    display: none;
}

.widget_shopping_cart .product_list_widget li a.remove {
    position: absolute;
    display: flex;
    top: 12px;
    left: 5px;
    font-size: 0 !important;
    width: 14px;
    height: 14px;
}

.shoptimizer-mini-cart-wrap .widget_shopping_cart li.mini_cart_item a {
    font-size: 14px !important;
    color: #392e24 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ckobp-before-you-go {
    font-size: 16px !important;
    color: #392e24 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: normal !important;
}

.commercekit-order-bumps .commercekit-order-bump {
    scroll-snap-align: center;
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 4px !important;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.commercekit-order-bump {
    border: 1px solid #e5e2dc !important;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.06);
    padding: 10px;
    margin: 8px 0 0 0;
    border-radius: 6px;
}

.commercekit-order-bump .ckobp-product {
    margin: 0px 15px 0 15px;
}

.commercekit-order-bump .ckobp-name a {
    font-size: 12px !important;
    color: #392e24 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.commercekit-order-bump .ckobp-price, .commercekit-order-bump .ckobp-price ins {
    color: #544844 !important;
}

/* Hide ALL original content */
.commercekit-order-bump .ckobp-actions button {
    position: relative;
    color: transparent !important;   /* hide text */
    font-size: 0 !important;         /* kill inherited text */
    
    padding: 0 10px !important;
    height: 28px;

    background: #fff !important;
    border: 0px solid #e5e2dc !important;
    border-radius: 2px;

    cursor: pointer;
}

/* Also hide anything inside */
.commercekit-order-bump .ckobp-actions button * {
    display: none !important;
}

/* Inject clean label */
.commercekit-order-bump .ckobp-actions button::after {
    content: "Add to bag" !important;
    font-size: 12px !important;
    letter-spacing: 0.08em;
    color: #392e24 !important;
    background: #fff !important;
    border: 0px solid #e5e2dc !important;
}

/* Hover */
.commercekit-order-bump .ckobp-actions button:hover {
    border-color: #544844 !important;
}


/* =============================
   CART PAGE
============================= */

/* Cart left side */

.wc-block-cart__main .wc-block-cart-items td {
    border-top: 1px solid #e5e2dc;
	border-bottom: 0px solid #e5e2dc;
    padding: 20px 0 20px 16px;
    vertical-align: top;
}

    .wc-block-cart__main .wc-block-cart-items {
        border-bottom: 0px;
    }

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    margin: 0;
    width: 60%;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    display: block;
    font-size: 14px !important;
    color: #544844 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 5px;
    max-width: max-content;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description>p, .wc-block-components-product-metadata .wc-block-components-product-metadata__variation-data {
    display: none !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
    display: none !important;
}

.wc-block-components-quantity-selector {
    border: 0px;
	color: #544844;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    flex: 1 1 auto;
    font-size: 14px !important;
    line-height: 1;
    margin: 0;
    min-width: 40px;
    padding: 0px;
}

/* Hide the SVG icon */
.wc-block-cart-item__remove-link svg {
    display: none !important;
}

/* Reset button appearance */
.wc-block-cart-item__remove-link {
    all: unset;
    cursor: pointer;

    font-size: 12px !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #544844 !important;

    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

/* Inject text */
.wc-block-cart-item__remove-link::after {
    content: "Remove" !important;
}

/* Hover effect (like filters) */
.wc-block-cart-item__remove-link:hover {
    border-bottom: 1px solid #544844;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    font-size: 14px !important;
}

/* Cart right side */

.wc-block-components-totals-wrapper {
    border-top: 1px solid #e5e2dc;
    padding: 16px 0;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
    border-bottom: 1px solid #e5e2dc;
    font-size: 14px !important;
    line-height: 1.4;
    margin-bottom: 16px;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label, .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 20px !important;
    line-height: 1.4;
}

:root :where(.wp-element-button, .wp-block-button__link) {
    background-color: #392e24;
    border-width: 0;
    color: #fff;
}

[type="submit"]:hover {
    /*background-color: #544844 !important;*/
}

.wp-element-button.wc-block-cart__submit-button:before, .wp-element-button.wc-block-components-button.wc-block-components-checkout-place-order-button:before {
    background-color: #392e24;
}

.wp-element-button.wc-block-cart__submit-button:before, .wp-element-button.wc-block-components-button.wc-block-components-checkout-place-order-button:before {
    display: none;
}


/* =============================
   CHECKOUT PAGE
============================= */

/* Left side */

.woocommerce-checkout.min-ck:not(.woocommerce-order-received) header h1 {
    display: flex;
    margin: 0;
    font-size: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex: 9999;
    justify-content: flex-end;
}

.wc-block-components-title.wc-block-components-title {
    border: 0;
    border-radius: 0;
    font-size: 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    word-break: break-word;
}

.wc-block-components-form .wc-block-components-text-input input[type=email], .wc-block-components-form .wc-block-components-text-input input[type=number], .wc-block-components-form .wc-block-components-text-input input[type=password], .wc-block-components-form .wc-block-components-text-input input[type=tel], .wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-form .wc-block-components-text-input input[type=url], .wc-block-components-text-input input[type=email], .wc-block-components-text-input input[type=number], .wc-block-components-text-input input[type=password], .wc-block-components-text-input input[type=tel], .wc-block-components-text-input input[type=text], .wc-block-components-text-input input[type=url] {
	background-color: #fff !important;
    border: 1px solid #e5e2dc !important;
    border-radius: 4px;
    color: #2b2d2f;
    font-size: 14px !important;
    height: 40px !important;
    line-height: 25px;
}

.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
    font-size: 16px !important;
    left: 10px;
    line-height: 20px;
    margin: 0;
    top: 20px;
}

.wp-block-woocommerce-checkout .wc-block-checkout__guest-checkout-notice {
    font-size: 14px !important;
    line-height: 1.4;
    margin: 4px 0 0;
}

.wc-block-components-address-card {
    align-items: flex-start;
    border: 1px solid #e5e2dc;
    border-radius: 4px;
    display: flex;
    font-size: 14px !important;
    justify-content: flex-start;
    line-height: 1.4;
    margin: 0;
    padding: 16px;
}

.wc-block-components-checkbox label {
    align-items: flex-start;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px !important;
    gap: 12px;
    line-height: 20px;
    margin-bottom: 0 !important;
    position: relative;
}

.wc-block-components-address-form__address_2-toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font-size: 14px !important;
    line-height: 1.4;
    margin-top: 12px;
    text-align: left;
    width: 100%;
}

.wc-block-components-radio-control__description, .wc-block-components-radio-control__label, .wc-block-components-radio-control__secondary-description, .wc-block-components-radio-control__secondary-label {
    font-size: 14px !important;
    line-height: 1.4;
}

.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    border-radius: 4px;
    box-shadow: inset 0 0 0 0.3px currentColor;
}

.wc-block-components-radio-control-accordion-content {
    font-size: 14px !important;
    line-height: 1.4;
    padding: 0 16px 16px;
}

.wc-block-components-notice-banner.is-error {
    background-color: #f3efea;
    border-color: #d4cec6;
}

.wc-block-components-notice-banner>svg {
	display: none;
}

.wc-block-components-textarea {
    background-color: #fff;
    border: 1px solid #e5e2dc;
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: inherit;
    font-size: 14px !important;
    font-style: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    line-height: 1.4;
    margin: 0;
    padding: 12px;
    text-decoration: inherit;
    text-transform: inherit;
    width: 100%;
}

.wc-block-checkout__terms {
    font-size: 14px !important;
    line-height: 1.4;
    margin: 0 0 24px;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row {
    align-items: center;
    display: flex;
    font-size: 18px !important;
    gap: 8px;
    justify-content: space-between;
    line-height: 1.4;
}

.wc-block-components-checkout-return-to-cart-button {
    display: none;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 3em;
    width: 100%;
}

.wp-element-button.wc-block-components-button.wc-block-components-checkout-place-order-button {
    background-color: #392e24 !important;
    color: #fff !important;
}

/* Right side */

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    flex-grow: 1;
    font-size: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px 16px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    align-items: center;
    background: #fff;
    border: 1px solid #e5e2dc;
    border-radius: 1em;
    box-shadow: 0 0 0 2px #fff;
    color: #000;
    display: flex;
    justify-content: center;
    line-height: 1;
    min-height: 20px;
    min-width: 20px;
    padding: 0 .4em;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    white-space: nowrap;
    z-index: 1;
}

.wc-block-components-product-name {
    font-size: 14px !important;
    color: #544844;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin-bottom: 5px;
    max-width: max-content;
}

.wp-block-woocommerce-checkout-order-summary-block {
    border: 1px solid #e5e2dc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px !important;
    line-height: 1.4;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-footer-item-tax {
    display: none !important;
}

/* Mobile adjustments */

@media (max-width: 992px) {
    .min-ck.woocommerce-checkout button.menu-toggle, .woocommerce-checkout.min-ck .mobile-myaccount, .woocommerce-checkout.min-ck .mobile-search-toggle, .woocommerce-checkout.min-ck .shoptimizer-myaccount, .woocommerce-checkout.min-ck:not(.woocommerce-order-received) header h1 {
        display: none !important;
    }
}

@container (max-width: 699px) {
    .wp-block-woocommerce-checkout-order-summary-block {
        border: none !important;
        margin-top: 0;
    }
}

@container (max-width: 699px) {
    .wc-block-checkout__sidebar {
        margin-bottom: 0px;
        order: 0;
    }
}

@container (max-width: 699px) {
	.woocommerce-checkout:not(.woocommerce-order-received) .site-main {
    	padding-top: 0;
    	padding-bottom: 1.5rem;
  	}
}

@container (max-width: 699px) {
	.is-large.wc-block-cart, .wp-block-woocommerce-checkout.wc-block-checkout {
	    margin-top: 0em;
	}
}

@container (max-width: 699px) {
	.wp-block-woocommerce-checkout {
	    container-type: inline-size;
	    margin: 0;
	    padding-top: 10px;
	    width: 100%;
	}
}

@container (max-width: 699px) {
    .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
        display: none;
    }
}


/* ==========================================================================================================
   ORDER CONFIRMATION
========================================================================================================== */

.woocommerce-checkout p.woocommerce-thankyou-order-received {
    display: flex;
    justify-content: center;
    margin: 1.5em 0 1em;
    color: #765949;
    font-size: 22px;
    letter-spacing: 0.01em;
}

.woocommerce-checkout p.woocommerce-thankyou-order-received:before {
	display: none;
}
  
.woocommerce-order ul.order_details {
    padding: 1em 1.5em;
    margin-left: 0;
    margin-bottom: 2em;
    background-color: #f5f2ed;
    text-align: center;
}

.woocommerce-order-received .woocommerce-order-details:before {
	display: none;
}

.woocommerce-order-received .woocommerce-order-details:after {
	display: none;
}


.woocommerce-order-received .woocommerce-order-details {
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e2dc;
    position: relative;
    transition: 180ms;
    border-radius: 4px;
}



/* ==========================================================================================================
   FOOTER
========================================================================================================== */

.site-footer div {
  max-width: 1500px !important;
}

.copyright div {
  max-width: 1500px !important;
}

.footer-menu li a {
  color: #ffffff !important;
  font-size: 14px;
    font-weight: 200;
}

.fa-brands {
  font-size: 20px !important;
  padding: 0 5px !important;
  color: #ffffff;
}

@media (max-width: 992px) {

  #custom_html-11 span {
    display: none !important;
  }

  #social-media {
    display: flex !important;
    justify-content: space-between !important;
    margin: 13% 20% 0 20% !important;
  }

  .copyright-section {
    flex-direction: column;
    margin-top: 30px;
    font-size: 14px !important;
  }

  footer.copyright p {
    margin-top: 20px;
  }

  .credic-card-icons {
    /* display: none !important; */
    display: flex;
    flex-direction: row;
    margin-bottom: 40px;
  }

  #custom_html-6 span {
    display: none !important;
  }

  .footer-nl-signup-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 40px;
  }

  .footer-nl-signup-text p {
    text-align: center;
  }

  .fake-nl-signup div input {
    width: 200px !important;
  }

  .fake-nl-signup div button {
    width: 100px !important;
  }

  .wpb_single_image.vc_align_left {
    text-align: center;
  }
}
