/*
Theme Name: Girò del Gorner
Theme URI: https://girodelgorner.com
Description: Standalone theme for Girò del Gorner — no Bridge dependency
Version: 1.0
Text Domain: gdg
*/

/* ==========================================
   RESET & BASE
   ========================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Ensure all containers have white background */
.site-wrapper,
.site-content,
.gdg-container {
    background: #fff;
}

a {
    color: #99143d;
    text-decoration: none;
}

a:hover {
    color: #6f0029;
}

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.75rem;
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* ==========================================
   LAYOUT
   ========================================== */

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

.gdg-container::after {
    content: '';
    display: table;
    clear: both;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .gdg-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-logo a {
    display: block;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #99143d;
    text-decoration: none;
}

/* Primary navigation */
.primary-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
}

.primary-nav ul li {
    position: relative;
}

.primary-nav ul li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a {
    color: #99143d;
}

/* Dropdown */
.primary-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e6e6e6;
    min-width: 180px;
    flex-direction: column;
    gap: 0;
    z-index: 999;
}

.primary-nav ul li:hover > ul {
    display: flex;
}

.primary-nav ul li ul li a {
    padding: 8px 16px;
    font-size: 0.8125rem;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 1.5rem;
    line-height: 1;
    color: #333;
}

/* ==========================================
   MAIN CONTENT AREA
   ========================================== */

.site-main {
    padding: 40px 0;
}

.entry-content {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

.entry-content .background-space,
.entry-content .background-space-2 {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

.site-footer {
    background: #262626;
    color: #aaa;
}

.footer_top {
    padding: 50px 0;
}

.footer_top .gdg-container {
    display: flex;
    gap: 20px;
    background-color: transparent;
}

.footer_top .column1 {
    width: 30%;
    flex-shrink: 0;
}

.footer_top .column1 .logo {
    display: block;
    width: 100%;
    min-height: 90px;
    background: url(images/logo-giro-white-transparent.png) no-repeat 0 0;
    background-size: cover;
}

.footer_top .column2 {
    width: 70%;
}

.footer_top .column2 .menu li {
    float: left;
    padding-right: 60px;
    text-transform: uppercase;
}

.footer_top .column2 .menu li a {
    color: #aaa;
    font-size: 0.875rem;
}

.footer_top .column2 .menu li a:hover {
    color: #fff;
}

.footer_top .column2 .menu .sub-menu {
    padding: 20px 0 10px 0 !important;
}

.footer_top .column2 .menu li li {
    float: none;
}

.footer_top .column2 .menu li li a {
    text-transform: none;
    font-size: 0.8125rem;
    padding-right: 0;
}

.footer_bottom_holder {
    border-top: 1px solid #3a3a3a;
}

.footer_bottom {
    padding: 20px 0;
    color: #fff;
    font-size: 0.875rem;
}

.footer_bottom .gdg-container {
    text-align: center;
    background-color: transparent;
}

.footer_bottom .left {
    text-align: left;
}

.footer_bottom .right {
    text-align: right;
}

.footer_bottom ul {
    text-align: right;
}

.footer_bottom a {
    color: #aaa;
}

.footer_bottom a:hover {
    color: #fff;
}

/* ==========================================
   GDG BUTTON SHORTCODE
   ========================================== */

.gdg-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #99143d;
    cursor: pointer;
    text-align: center;
}

.gdg-btn--primary {
    background: #99143d;
    color: #fff;
    border-color: #99143d;
}

.gdg-btn--primary:hover {
    background: transparent;
    color: #99143d;
}

.gdg-btn--secondary {
    background: #6f7073;
    color: #fff;
    border-color: #6f7073;
}

.gdg-btn--secondary:hover {
    background: transparent;
    color: #6f7073;
}

.gdg-btn--outline {
    background: transparent;
    color: #99143d;
    border-color: #99143d;
}

.gdg-btn--outline:hover {
    background: #99143d;
    color: #fff;
}

.gdg-btn--sm {
    padding: 6px 16px;
    font-size: 0.8125rem;
}

.gdg-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Slider height fix — object-fit ensures images fill specified height */
.gdg-slider-wrap .slides li img {
    object-fit: cover;
    width: 100%;
}

/* ==========================================
   GDG SLIDER SHORTCODE
   ========================================== */

/* Full-width wrapper rendered above page content */
.gdg-page-slider {
    width: 100%;
    overflow: hidden;
}

.gdg-slider-wrap {
    width: 100%;
    overflow: hidden;
}

.gdg-slider {
    margin: 0;
    padding: 0;
}

.gdg-slider .slides li img {
    width: 100%;
    height: auto;
    display: block;
}

/* FlexSlider overrides — no animations */
.flexslider {
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.flex-direction-nav a {
    opacity: 1;
}

/* ==========================================
   HEADER (original child theme overrides)
   ========================================== */

.container_inner {
    position: relative;
}

.header_top .right {
    float: none;
    position: absolute;
    right: 0;
}

.cli-plugin-button,
.cli-plugin-button:visited {
    background-image: none;
    border-radius: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.header-widget a {
    margin-left: 3px;
}

.main_menu ul li:last-child a {
    padding-left: 0;
}

.social-ico {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #fff;
    margin: 10px 3px 0 3px;
    text-align: center;
}

.social-ico:hover {
    background-color: #6f7073;
}

.social-ico .fa {
    padding-top: 4px;
}

.social-ico .fa:before {
    color: #6f7073;
    font-size: 24px;
}

.social-ico:hover .fa:before {
    color: #000;
}

/* ==========================================
   CONTENT
   ========================================== */

.titol-blanc h1 {
    font-size: 60px;
    color: #fff;
}

.titol-giro h2 {
    color: #99143d;
    text-transform: none;
}

.titol-giro h2 strong {
    font-size: 16px !important;
    font-weight: 600;
}

.pdf {
    float: right;
    margin: -100px 0 0 20px;
    padding: 10px;
    overflow: hidden;
}

.q_social_icon_holder.normal_social {
    margin: 0 12px !important;
}

.background-space {
    padding-top: 200px;
    padding-bottom: 200px;
}

.background-space-2 {
    padding-top: 287px;
    padding-bottom: 287px;
}

/* ==========================================
   CONTACT
   ========================================== */

.direccion h4 {
    font-size: 15px !important;
}

.direccion p {
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 30px !important;
}

.vc_column_1 {
    padding-left: 0 !important;
}

.vc_column_2 {
    padding-right: 0 !important;
}

.relative {
    width: 100%;
    position: relative;
}

p.enviar {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
}

p.enviar img {
    display: none;
}

p.obligatorios {
    margin-top: 15px !important;
}

p.datos {
    margin-top: 30px !important;
}

div.wpcf7-response-output.wpcf7-validation-errors {
    background: #99143d;
}

.wpcf7-form-control {
    position: relative;
    z-index: 900;
}

/* ==========================================
   MAP
   ========================================== */

#map-contact {
    width: 100%;
    height: 450px;
}

/* ==========================================
   WOOCOMMERCE — SHOP / PRODUCT GRID
   ========================================== */
.woocommerce-products-header__title.page-title {
    display: none;
}

/* Hide breadcrumbs on shop pages */
.woocommerce-breadcrumb,
.woocommerce-message.woocommerce-message--info,
.woocommerce .woocommerce-breadcrumb {
    display: none !important;
}

/* Hide product category on single product pages */
.single-product .product_meta,
.single-product .posted_in,
.single-product .tagged_as {
    display: none !important;
}

/* Hide result count and ordering on shop pages */
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    display: none !important;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    display: none !important;
}

/* Full-width shop/archive/product - hide sidebars everywhere */
.woocommerce .widget-area,
.woocommerce-page .widget-area,
.woocommerce .shop-sidebar,
.woocommerce-page .shop-sidebar,
.sidebar,
.single-product .widget-area,
.woocommerce.archive .widget-area,
.woocommerce-page.archive .widget-area {
    display: none !important;
}

/* Hide categories widget on WC pages */
.widget_categories,
.widget_product_categories,
.widget_layered_nav,
.woocommerce .widget_product_categories {
    display: none !important;
}

/* Sidebar widget wrapper - target specific IDs */
#sidebar,
.widget-area,
aside.widget,
aside.sidebar {
    display: none !important;
}

/* Ensure full-width on all WooCommerce pages */
.woocommerce .gdg-container,
.woocommerce-page .gdg-container,
.single-product .gdg-container,
.archive .gdg-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.woocommerce ul.products {
    justify-content: center;
}

/* Remove default WooCommerce page padding */
.woocommerce .woocommerce-notices-wrapper {
    margin-bottom: 1rem;
}

/* Product grid list reset */
ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
}

ul.products li.product {
    width: 33.333%;
    padding: 0 15px 40px;
    box-sizing: border-box;
    text-align: center;
}

/* Image area */
.top-product-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.top-product-section .image-wrapper {
    display: block;
}

.top-product-section .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.top-product-section:hover .image-wrapper img {
    opacity: 0.85;
}

/* Add to cart button overlay */
.add-to-cart-button-outer {
    display: block;
    margin-top: 10px;
}

.add-to-cart-button-inner {
    display: block;
}

.add-to-cart-button-inner a.add-to-cart-button,
.add-to-cart-button-inner a.button {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.add-to-cart-button-inner a.add-to-cart-button:hover,
.add-to-cart-button-inner a.button:hover {
    background: transparent;
    color: #99143d;
}

/* Out of stock - yellow badge with white centered text */
.out-of-stock-button,
.out-of-stock-button-inner,
.onsale.out-of-stock-button,
ul.products li.product.out-of-stock .out-of-stock-button {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #f9d71c;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
}

/* Hide add-to-cart when out of stock */
ul.products li.product.out-of-stock a.add-to-cart-button,
ul.products li.product.out-of-stock a.button {
    display: none !important;
}

/* Add to cart button on product card */
ul.products li.product a.add-to-cart-button,
ul.products li.product a.button,
.add-to-cart-button-inner a.add-to-cart-button,
.add-to-cart-button-inner a.button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

ul.products li.product a.add-to-cart-button:hover,
ul.products li.product a.button:hover,
.add-to-cart-button-inner a.add-to-cart-button:hover,
.add-to-cart-button-inner a.button:hover {
    background: transparent;
    color: #99143d;
}

/* Single product add to cart button */
.single-product .single_add_to_cart_button,
.single-product .button.single_add_to_cart_button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.4;
}

.single-product .single_add_to_cart_button:hover,
.single-product .button.single_add_to_cart_button:hover {
    background: transparent;
    color: #99143d;
}

/* Product info link below image */
a.product-info {
    display: block;
    text-decoration: none;
    color: #333;
}

a.product-info:hover {
    color: #99143d;
}

a.product-info h6 {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
    color: #333;
}

a.product-info:hover h6 {
    color: #99143d;
}

/* Description span below title in loop */
.woocommerce .product .description,
span.description {
    display: block;
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 6px;
    text-align: center;
}

/* Price in loop */
.woocommerce .woocommerce-Price-amount,
.woocommerce ul.products li.product .price {
    font-weight: 700;
    color: #333;
    font-size: 0.9375rem;
}

/* Sale flash */
.woocommerce span.onsale {
    background: #99143d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    min-width: 0;
    min-height: 0;
    line-height: 1.4;
    border-radius: 0;
}

/* ==========================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   ========================================== */

.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start;
}

.single-product .woocommerce-product-gallery {
    width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
    opacity: 1 !important;
}

.single-product .qode-single-product-summary {
    width: 50%;
    box-sizing: border-box;
    padding-left: 10px;
}

.single-product .summary.entry-summary {
    width: 100%;
}

.single-product .product_title.entry-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: #333;
}

.single-product .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.woocommerce-product-details__short-description {
    padding: 20px 0 30px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #555;
}

.woocommerce-product-details__short-description p {
    margin-bottom: 0.5rem;
}

/* Add-to-cart form */
.single-product form.cart {
    margin-top: 10px;
}

.single-product .quantity.buttons_added {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
}

.single-product .quantity .minus,
.single-product .quantity .plus {
    background: #f5f5f5;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
}

.single-product .quantity .qty {
    width: 50px;
    border: none;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    padding: 8px 6px;
    text-align: center;
    font-size: 1rem;
    color: #333;
}

.single-product .single_add_to_cart_button {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.4;
    height: auto;
}

.single-product .single_add_to_cart_button:hover {
    background: transparent;
    color: #99143d;
}

/* Shipping info block */
.woocommerce .shipping-info {
    margin-top: 3rem;
    padding: 20px 0 10px;
    font-size: 0.875rem;
    color: #555;
}

.woocommerce .shipping-info ul {
    padding-top: 10px;
    padding-left: 20px;
    list-style: disc;
}

.woocommerce .shipping-info ul li {
    margin-bottom: 4px;
}

/* Hide product meta and WooCommerce tabs accordion on single product */
.single-product .product_meta {
    display: none;
}

/* Product tabs as accordion - hidden */
.q_accordion_holder.woocommerce-accordion,
.q_accordion_holder,
.single-product .related.products,
.single-product .woocommerce-accordion {
    display: none !important;
}

.single-product .up-sells {
    padding: 0 40px;
}

/* Product summary - remove width */
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: auto !important;
    float: none !important;
}

/* Product tabs as accordion */
    margin-top: 30px;
    border-top: 1px solid #e6e6e6;
    clear: both;
}

.q_accordion_holder.woocommerce-accordion .title-holder {
    border-bottom: 1px solid #e6e6e6;
    padding: 14px 0;
    cursor: pointer;
    margin: 0;
}

.q_accordion_holder.woocommerce-accordion .title-holder .tab-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #333;
}

.q_accordion_holder.woocommerce-accordion .accordion_content {
    padding: 16px 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid #e6e6e6;
}

/* Upsells / Related products */
.up-sells,
.related.products {
    clear: both;
    margin-top: 50px;
}

.up-sells > h2,
.related.products > h2,
.up-sells > h4.qode-related-upsells-title,
.related.products > h4.qode-related-upsells-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: #333;
}

/* ==========================================
   WOOCOMMERCE — CART
   ========================================== */

.woocommerce-cart {
    background-color: #fff;
}

/* Page title hide (already hidden by Bridge conventions) */
.woocommerce-cart h1,
.woocommerce-cart .title .separator,
.woocommerce-checkout h1,
.woocommerce-checkout .title .separator {
    display: none;
}

/* Cart table */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    vertical-align: middle;
    background: none;
    color: #555;
}

.woocommerce table.shop_table th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    color: #333;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 80px;
    height: auto;
}

.woocommerce table.shop_table .product-remove a {
    color: #888;
    font-size: 1.25rem;
    line-height: 1;
    text-decoration: none;
    font-weight: 700;
}

.woocommerce table.shop_table .product-remove a:hover {
    color: #99143d;
}

/* Cart coupon + update */
.woocommerce table.cart td.actions {
    padding-top: 16px;
}

.woocommerce table.cart td.actions .coupon {
    float: left;
    display: flex;
    gap: 8px;
    align-items: center;
}

.woocommerce table.cart td.actions .coupon input {
    padding: 8px 12px;
    border: 1px solid #e6e6e6;
    font-size: 0.875rem;
}

/* Update cart / proceed to checkout */
.woocommerce table.cart td.actions .button,
.woocommerce-page table.cart td.actions .button {
    float: right;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid #cdcdcd;
    background: transparent;
    color: #cdcdcd;
    cursor: pointer;
    margin-left: 8px;
    text-decoration: none;
}

.woocommerce table.cart td.actions > .checkout-button,
.woocommerce-page table.cart td.actions > .checkout-button {
    color: #fff;
    background-color: #99143d;
    border-color: #99143d;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    border: 2px solid #99143d;
}

.woocommerce table.cart td.actions > .checkout-button:hover,
.woocommerce-page table.cart td.actions > .checkout-button:hover {
    color: #99143d;
    background-color: transparent;
}

/* Cart totals */
.cart-collaterals {
    margin-top: 30px;
}

.cart_totals {
    float: right;
    width: 50%;
    font-size: 0.875rem;
}

.cart_totals h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    color: #333;
}

.cart_totals .shop_table th,
.cart_totals .shop_table td {
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6;
    color: #555;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

/* Proceed to checkout button in totals */
.cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    background: transparent;
    color: #99143d;
}

/* Empty cart */
.empty-cart-wrapper {
    padding: 40px 0;
    text-align: center;
}

.empty-cart-wrapper .woocommerce-info,
.empty-cart-wrapper .cart-empty {
    margin-bottom: 24px;
    font-size: 1rem;
    color: #555;
}

.empty-cart-wrapper .return-to-shop .button,
.empty-cart-wrapper .return-to-shop a {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #99143d;
    color: #fff;
    border: 2px solid #99143d;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.empty-cart-wrapper .return-to-shop .button:hover,
.empty-cart-wrapper .return-to-shop a:hover {
    background: transparent;
    color: #99143d;
}

/* ==========================================
   WOOCOMMERCE — CHECKOUT
   ========================================== */

.woocommerce-checkout {
    background-color: #fff;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon {
    display: none;
}

.woocommerce #billing_country_field {
    display: none;
}

/* Checkout columns */
.woocommerce .col-1,
.woocommerce .col-2 {
    float: left;
    width: 100%;
    margin-right: 0;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .woocommerce .col-1 {
        width: 55%;
        padding-right: 40px;
    }
    .woocommerce .col-2 {
        width: 45%;
    }
}

/* Checkout form fields */
.woocommerce form .form-row {
    margin-bottom: 16px;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    font-size: 0.875rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: #99143d;
}

.select2-search.select2-search--dropdown .select2-search__field {
    border: 1px solid #e6e6e6 !important;
}

/* Checkout order review table */
.woocommerce-checkout table.shop_table {
    width: 100%;
    margin-bottom: 24px;
}

/* Place order button */
.woocommerce #place_order {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px;
    line-height: normal;
    height: auto;
    margin-top: 1.5rem;
    color: #99143d;
    border: 2px solid #99143d;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
    font-family: inherit;
}

.woocommerce #place_order:hover {
    color: #fff;
    background-color: #99143d;
}

.woocommerce-terms-and-conditions-wrapper p {
    padding-top: 20px;
    font-size: 0.875rem;
    color: #555;
}

/* General submit button reset for WC pages */
.woocommerce-page input[type=submit] {
    color: #cdcdcd;
    border-color: #cdcdcd;
    border-radius: 0;
}

/* Mini cart / cart dropdown */
.shopping_cart_dropdown {
    background-color: #fff;
}

.shopping_cart_dropdown .view-cart {
    background-color: #99143d;
    color: #fff;
}

.shopping_cart_dropdown ul li a:hover {
    color: #99143d;
}

.shopping_cart_dropdown span.total span {
    color: #333;
}

/* WooCommerce notices */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    margin-bottom: 20px;
    padding: 16px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    background: #f8f8f8;
    border-left: 4px solid #99143d;
    list-style: none;
}

/* ==========================================
   WOOCOMMERCE — RESPONSIVE
   ========================================== */

@media only screen and (max-width: 768px) {
    ul.products li.product {
        width: 50%;
        padding: 0 10px 30px;
    }

    .single-product .woocommerce-product-gallery,
    .single-product .qode-single-product-summary {
        width: 100%;
        padding: 0 15px;
    }

    .single-product .woocommerce-product-gallery {
        margin-bottom: 24px;
    }

    .cart_totals {
        width: 100%;
        float: none;
    }
}

@media only screen and (max-width: 480px) {
    ul.products li.product {
        width: 100%;
        padding: 0 10px 20px;
    }
}

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

@media only screen and (min-width: 600px) and (max-width: 1000px) {
    .vc_column_1 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .vc_column_2 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .header_top .left {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .header_top .right {
        position: relative;
    }

    .site-header .gdg-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-toggle {
        order: 3;
    }

    .primary-nav {
        order: 4;
        width: 100%;
    }

    .gdg-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .vc_column_1 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .vc_column_2 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .header_top .left {
        display: none;
    }

    #cookie-law-info-bar span {
        display: block;
        line-height: 15px;
        margin: 0 auto 10px auto;
    }

    .footer_top .gdg-container {
        flex-direction: column;

    }

    .footer_top .column1,
    .footer_top .column2 {
        width: 100%;
    }

    .footer_top .column1 .logo,
    .footer_top .column2 .menu {
        display: none;
    }

    #map-contact {
        height: 350px;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        z-index: 999;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .primary-nav ul li ul {
        position: static;
        display: none;
        border: 0;
        border-top: 1px solid #e6e6e6;
        padding-left: 16px;
    }

    .primary-nav ul li.is-open > ul {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    .pdf {
        float: none;
        margin: 10px auto;
        text-align: center;
    }

    .background-space {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .background-space h1 {
        font-size: 20px;
    }

    .background-space-2 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .background-space-2 h1 {
        font-size: 20px;
    }

    .footer_bottom .left {
        text-align: center;
    }

    .footer_bottom .right {
        text-align: center;
    }

    .footer_bottom ul {
        text-align: center;
    }

    #map-contact {
        height: 200px;
    }
}
