
:root {
    --brand: #4f46e5; /* Indigo */
    --brand-soft: #eef2ff;
    --surface: #ffffff;
    --bg: #f1f5f9;
    --text-base: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-xl: 16px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px -2px rgba(0,0,0,0.08);

    --page-max-width: 1248px;
    --page-padding-x: 44px;
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--text-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    
}


header.site-menu {
    .top {
        max-width: var(--page-max-width);
    }


    
}

.container{
    max-width: var(--page-max-width);
    margin :32px auto;
    margin-bottom: 118px;

    
}



.breadcrumbs-nav {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}


/* BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    list-style: none;
}

.breadcrumbs li {
    display: flex;
    align-items: center;

}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #2563eb;
    text-decoration: underline;
}



.breadcrumbs li:last-of-type {
    color: #0f172a;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.breadcrumbs li:not(:last-of-type)::after {
    content: "/";
    margin: 0 7px;
    color: #00000036;
}


.share-trigger-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px 8px;
    border-radius: 8px;
    border: none;
    background: none;
}

.share-trigger-link:hover {
    color: #2563eb;
    background: #f1f5f9;
}

/* GRID */
.layout{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.92fr);
    gap: 70px;
    padding: 0px var(--page-padding-x);
    padding-bottom: 80px;
}

.left .card, .right .sidebar {
    position: sticky;
    top: calc(var(--header-top-height) + var(--header-bottom-height) + 32px);
}



.gallery{
    position: relative;
}

.main-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    cursor: zoom-in;
}

.main-img{
    width:100%;
    height: 100%;
    object-fit:cover;
    border-radius:12px;
    border:1px solid #e2e8f0;
    display: flex;
}

/* LIKE BUTTON */
.like-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    aspect-ratio: 1/1;
    background: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    z-index: 10;
}

.like-btn:active {
    transform: scale(0.9);
}

.left .card .like-btn svg {
    width: 20px;
    height: 20px;
    stroke: #222;
    fill: transparent;
    stroke-width: 1.8;
    transition: all 0.2s ease;
}




.left .card .like-btn.liked svg {
    fill: #ef4444;
    stroke: #ef4444;
}

/* NAV ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 26%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-img-container:hover .nav-arrow {
    opacity: 1;
}

.nav-arrow:hover {
    background: white;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #0f172a;
    stroke-width: 2.5;
    fill: none;
}

.prev-arrow { left: 12px; }
.next-arrow { right: 12px; }






/* --- UPDATED THUMBNAILS & POPUP --- */
.thumbs {
    display: flex;
    gap: 11px;
    margin-top: 12px;
    position: absolute;
    right: 29px;
    bottom: 14px;
    left: 16px;
    pointer-events: none;
    visibility: hidden;      
    z-index: 20; 
}

.more-wrapper {
    position: relative;
    pointer-events: auto;
    z-index: 30; /* Higher than regular thumbs */
}

.thumb {
    width: 57px;
    height: 57px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
    background: #ffffff73;
    flex-shrink: 0;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.thumb.active {
    --color: #ffffff;
    border-color: var(--color);
    outline: 1px solid var(--color);
}

.thumbs-popup .thumb.active {
    --color: #00ff7c;
    border-color: #ffffff;
    outline: 2px solid #0064ff;
    
}

.thumbs-popup .thumb {
    border: 2px solid transparent;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-more {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: none !important;
}

.thumbs-popup {
    position: absolute;
    top: 78px; 
    right: 0;
    background: white;
    border-radius: 14px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 64px); 
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Stronger shadow for depth */
    border: 1px solid #e2e8f0;
    z-index: 1000; /* Extremely high to stay on top */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.thumbs-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure the main image container doesn't clip the popup */
.main-img-container {
    overflow: visible !important; 
}

.thumbs-popup::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}

/* Mobile Adjustments (< 900px) */
@media (max-width: 900px) {
    .nav-arrow {
        display: none !important;
    }
    .main-img-container {
        touch-action: pan-y;
    }
}





/* MORE PRODUCTS */

.related-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 21px; }
.related-heading h2 { font-size: 20px; letter-spacing: -.035em; margin-bottom: 0; }
.related-heading p { color: #777773; font-size: 12px; margin-top: 9px; }
.all-link { color: #3657c8 !important; font-size: 12px; font-weight: 600; }
.listings-section {
    
    padding: 0px calc(var(--page-padding-x) - 6px);
    
    a {
        text-decoration: none;
        color: inherit;
    }

}




/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.lightbox.active {
    display: flex;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lightbox-slider {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 210px;
}

.lightbox-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 5px;
    right: 22px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1010;
    font-weight: 300;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 1010;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: background 0.2s;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-arrow svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }





.condition_label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info_icon {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.info_icon svg {
    width: 13px;
    height: 13px;
    color: #0074ff;
    flex-shrink: 0;
}











/* --- SIDEBAR CARDS --- */
.sidebar { display: flex; flex-direction: column; gap: 24px; line-height: 1.6; }

.card {


    .btn-group {

        .wrapper {
            display: flex;
            gap: 13px;
        }
    
        .btn {
            width: 100%;
            min-height: 49px;
            border-radius: 9px;
            border: 1px solid #e7e8ea;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 13.5px;
            transition: .2s;
            letter-spacing: 0.1px;
            
        }

        

        
    }
}

.left .card {
    padding: 0;
}


.category-label { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 1px; }
.product-title { 
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.13;
    letter-spacing: -1.2px;
    margin-bottom: 13px;
    color: #17191c;
}

.product-price { 
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.7px;
    margin-bottom: 18px;

    span {
        color: #6d737c;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0;
        margin-left: 7px;
    }

    &[data-sold="1"] {
        text-decoration: line-through;
    }
}

.delivery-pill {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    margin: 20px 0;

    font-size: 12px;
    font-weight: 500;
}
.specifications-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.description-wrapper {
    max-width: 464px;
}

.delivery-pill div { display: flex; align-items: center; gap: 6px; }
.delivery-pill img { width: 16px; height: 16px; }

.btn-group { display: flex; gap: 12px;   }

.btn-buy { color: white;
    background: #1769ff; text-decoration: none; background: #671fe7;  }
.btn-buy:hover { }
.btn-outline { background: none; color: black;  }
.btn-outline:hover {  }

/* --- SPECIFICATIONS --- */
.spec-list {         display: flex;
    gap: 9px;
    flex-wrap: wrap;
    row-gap: 2px;
    padding-top: 0;
        margin-bottom: 40px;
    margin-top: 11px;
    
    
    .spec-item { display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    font-size: 12px;
    gap: 5px;
    /* flex-wrap: wrap; */
    background: #0000000d;
    padding: 6px 9px;
    border-radius: 8px;
    letter-spacing: 0.2px; } 

   

}
.spec-label {     color: #6d737c;     display: flex;
    gap: 8px;
    align-items: center;}
.spec-value {     color: #17191c;
    font-weight: 600;
    text-align: right;}

.info-trigger { background: none; border: none; cursor: pointer; color: var(--brand); }

.description-box {
    
    transition: max-height 0.3s ease-out;
    overflow: hidden;

    font-size: 13.5px;
    line-height: 1.7;
    max-width: 590px;
    margin-bottom: 10px; 
    color: #6d737c;

    span {
        white-space: pre-line; 
    }
    
    
}

/* This is the magic for row detection */
.description-box.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* CHANGE THIS TO THE NUMBER OF ROWS YOU WANT */
    -webkit-box-orient: vertical;
}

.description-toggle-btn {
    background: none;
    border: none;
    color: #1769ff;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 20px;
    text-decoration: underline;
}

#toggleDescBtn {
    margin-left: 2px;
}
  /* Shipping */
    .shipping {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid #e7e8ea;
      border-bottom: 1px solid #e7e8ea;
      padding: 16px 0;
      margin-bottom: 25px;
      margin-top: 24px;
    }

    .shipping-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
    }

    .shipping-item + .shipping-item {
      border-left: 1px solid #e7e8ea;
      padding-left: 20px;
    }

    .shipping-icon {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: #f7f8fa;
    }

    .shipping-icon svg {
      width: 17px;
      height: 17px;
      stroke: #555b63;
    }

    .shipping-label {
      color: #6d737c;
      font-size: 12px;
      display: block;
      margin-bottom: 2px;
    }

    .shipping-value {
      font-weight: 600;
    }
 /* Seller */
    .seller {
    
      
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .seller-profile {
      display: flex;
      align-items: center;
      gap: 11px;

      > div {
            margin-top: -5px;
      }
    }

    .seller-avatar {
      width: 43px;
      height: 43px;
      border-radius: 50%;
      object-fit: cover;
    }

    .seller-name {
      font-size: 13px;
      font-weight: 650;
      color: inherit;
    }

    .verified {
      color: #1769ff;
      font-size: 11px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 2px;
    }

    .verified svg {
      width: 13px;
      height: 13px;
      fill: #1769ff;
      stroke: white;
    }

    .message-btn {
        width: auto;
        padding: 0 17px;
        min-height: 40px;
        font-size: 12px;
        border-radius: 9px;
        
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-weight: 600;
    
        transition: .2s;
       
        background-color: white;
        color: #000000d4;
        border: 1px solid #00000026;
        max-width: 130px;
    }


.sold-status-container {

    background: #f1f5f9;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 24px 0;
    margin-bottom: 20px;
    border: 1px dashed #cbd5e1;
}

.sold-status-container h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.sold-status-container p {
    font-size: 13px;
    opacity: 0.8;
    color: #626262;
}

.sold-badge {
    
    display: inline-block;
    border-radius: 7px;
    margin-bottom: 14px;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 13px;

    padding: 5px 10px;
    font-size: 11px;
    text-transform: uppercase;

    

    &.active {
        background: #4300ff0f;
    }
    &.sold {
        background: #ff00040f;
    }
}





/* message and offer window */
/* Product Modals Common Styles */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* Slightly darker for focus */
    backdrop-filter: blur(4px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.product-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.product-modal-card {
    background: white;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 25px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    width: 28px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    transition: 0.3s;

    &:hover {
        background: #00000013;
        
    } 
}

.product-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.product-modal-header p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Mini Product Summary */
.product-summary-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.product-summary-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.summary-price {
    font-size: 13px;
    color: #64748b;
}

/* Form Elements */
.product-modal-body label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-modal-body input[type="number"],
.product-modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s;
}

.product-modal-body input:focus,
.product-modal-body textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-suffix {
    position: absolute;
    right: 16px;
    color: #64748b;
    font-weight: 600;
}

.product-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.product-modal-footer .btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    border: none;

    &:last-of-type {
        font-size: 14px;
    }
}

.btn-primary {
    background: var(--brand);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: #64748b;
}

.btn-ghost:hover {
    background: #f1f5f9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Hide number arrows on price input (they collide with "kr" on the right side) */
#offerPrice::-webkit-outer-spin-button,
#offerPrice::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
#offerPrice {
	-moz-appearance: textfield;
	appearance: textfield;
}




/* --- RESPONSIVE MEDIA QUERIES --- */

/* 1. Large Tablets and Small Laptops (under 1110px) */
@media (max-width: 1110px) {
    .container {
        
        margin: 58px auto;
    }

    .layout {
        gap: 40px;
        grid-template-columns: 1fr 1fr; /* Adjusting proportions slightly */
    }
}

/* 2. Tablets / Portrait Mode (under 900px) */
@media (max-width: 900px) {
    .layout {
        display: block; /* Stack Left and Right columns */
        padding-left: 0px;
        padding-right: 0px;
        border-bottom: 1px solid #0000001a;
        margin-bottom: 32px;
        padding-bottom: 37px;
    }
    
    .layout .right {
        padding: 0px var(--page-padding-x);
    }


    .main-img {
        border-radius: 0px;
        border: none;
    }

    .container {
        margin-top: 0px;
    }

    .product-title {
        margin-bottom: 7px;
    }

    .left .card, 
    .right .sidebar {
        position: static; /* Remove sticky behavior for mobile flow */
        width: 100%;
    }

    .left .card {
        margin-bottom: 30px;
    }

    .main-img-container {
        border-radius: 0; /* Optional: full width feel on mobile */
    }

   .related-heading {
        padding-left: 3px;
   }



    .thumb {
        width: 56px;  /* Smaller thumbs */
        height: 56px;
    }

    .thumbs-popup {
        grid-template-columns: repeat(3, 48px); /* Match new thumb size */
        top: 60px; /* Move popup up slightly to match smaller thumbs */
    }
}

/* 3. Small Tablets / Large Phones (under 768px) */
@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }

    .product-price {
        font-size: 22px;
    }

    /* Modal adjustments */
    .product-modal-card {
        padding: 24px;
        margin: 10px;
    }

    /* Lightbox spacing */
    .lightbox-slide {
        padding: 0 40px;
    }

    .lb-prev, .lb-next {
        width: 40px;
        height: 40px;
    }
}

/* 4. Mobile Devices (under 600px) */
@media (max-width: 600px) {

    :root {
        --page-padding-x: 19px;
    }



    .shipping {
        grid-template-columns: 1fr; /* Stack shipping items for readability */
        gap: 15px;
    }

    .shipping-item + .shipping-item {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e7e8ea;
        padding-top: 15px;
    }

    .card .btn-group .wrapper {
        flex-direction: column; /* Stack 'Bid' and 'Message' buttons */
        gap: 10px;
    }

    .seller {
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
    }

    .message-btn {
        width: 100%;
        min-height: 42px;
    }

    .breadcrumbs {
        flex-wrap: wrap; /* Prevent horizontal scroll */
    }

    
}

/* 5. Very Small Devices (320px - 400px) */
@media (max-width: 400px) {

    .product-title {
        font-size: 20px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-price span {
        display: block; /* Move "+ frakt" to new line */
        margin-left: 0;
        margin-top: 4px;
    }


    .related-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .all-link {
        align-self: flex-start;
    }

    /* Adjusting lightbox for narrow screens */
    .lightbox-slide {
        padding: 0 10px;
    }
    
    .lightbox-counter {
        font-size: 12px;
    }
}

/* 6. Landscape Orientation Fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .product-modal-overlay {
        align-items: flex-start; /* Allow scrolling if modal is taller than screen */
        overflow-y: auto;
        padding: 10px;
    }
    
    .product-modal-card {
        margin: auto;
    }

    .lightbox-slide img {
        max-height: 80vh;
    }
}




body > footer .container {
    padding: 0px calc(var(--page-padding-x) + 6px) !important;
}