.constructor-page {
    --bg: #f4f5f7;
    --white: #ffffff;
    --text: #202428;
    --muted: #747b82;
    --line: #e3e6e9;
    --accent: #fddd6f;
    --accent-light: #fff8df;
    --dark: #22272b;
}

.constructor {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    margin: 50px 0 0 0;
}

/* =========================================
       SIDEBAR
    ========================================= */

.constructor__sidebar {
    padding: 26px;
    background: #fff;
    box-shadow:
        rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
        rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
        rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
        rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-right: 1px solid var(--line);
    overflow-y: auto;
}

.constructor__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.constructor__logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #202428, #50575d);
    position: relative;
}

.constructor__logo-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid #fff;
    transform: skew(-12deg);
    border-radius: 4px;
}

.constructor__logo-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.constructor__logo-subtitle {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

.constructor__section {
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.constructor__section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.constructor__section-title {
    margin-bottom: 13px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #34393d;
}

/* =========================================
       UPLOAD
    ========================================= */

.constructor .upload {
    display: block;
    padding: 18px;
    background: #fafbfc;
    border: 1px dashed #c8ced3;
    border-radius: 13px;
    text-align: center;
    cursor: pointer;
}

.constructor .upload:hover {
    background: #f5f7f8;
    border-color: #999fa5;
}

.constructor .upload input {
    display: none;
}

.constructor .upload strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.constructor .upload span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

/* =========================================
       BUTTONS
    ========================================= */

.constructor .btn {
    min-height: 42px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: #34393d;
    font-size: 12px;
    font-weight: 700;
}

.constructor .btn:hover {
    background: #f6f7f8;
}

.constructor .btn--active {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

.constructor .btn--accent {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.constructor .btn--accent:hover {
    background: #6a5314;
}

.constructor .btn--dark {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff;
}

.constructor .btn:disabled {
    opacity: 0.45;
    cursor: default;
}

.constructor .button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.constructor .button-grid .btn--full {
    grid-column: 1 / -1;
}

/* =========================================
       AI
    ========================================= */

.ai-progress {
    display: none;
    height: 5px;
    margin-top: 10px;
    background: #e6e9ec;
    overflow: hidden;
    border-radius: 50px;
}

.ai-progress.active {
    display: block;
}

.ai-progress__bar {
    width: 35%;
    height: 100%;
    background: var(--accent);
    border-radius: 50px;
    animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(350%);
    }
}

/* =========================================
       CONTROLS
    ========================================= */

.constructor .range {
    display: grid;
    grid-template-columns: 110px 1fr 45px;
    gap: 8px;
    align-items: center;
    margin-top: 11px;
}

.constructor .range__label {
    color: #4d545a;
    font-size: 11px;
}

.constructor .range input {
    width: 100%;
}

.constructor .range output {
    color: var(--muted);
    font-size: 10px;
    text-align: right;
}

.constructor .check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
}

.constructor .check-row input {
    width: 16px;
    height: 16px;
}

.constructor__help {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

/* =========================================
       STONES
    ========================================= */

.constructor .stones {
    display: grid;
    gap: 8px;
    max-height: 300px;
    overflow-y: scroll;
}

.constructor .stone {
    width: 100%;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 20px;
    gap: 10px;
    align-items: center;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
    text-align: left;
}

.constructor .stone:hover {
    border-color: #bbbfc3;
}

.constructor .stone.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(253, 221, 111, 0.25);
}

.constructor .stone__preview {
    width: 58px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 7px;
}

.constructor .stone__name {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 700;
}

.constructor .stone__description {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.constructor .stone__check {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid #c9ced2;
    border-radius: 50%;
    font-size: 10px;
}

.constructor .stone.active .stone__check {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* =========================================
       WORKSPACE
    ========================================= */

.constructor__workspace {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.constructor__top {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 24px;
    background: #fff;
    box-shadow:
        rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
        rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
        rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
        rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-bottom: 1px solid var(--line);
}

.constructor__top-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
}

.constructor__status {
    max-width: 600px;
    color: var(--muted);
    font-size: 11px;
}

.constructor__actions {
    display: flex;
    gap: 8px;
}

/* =========================================
       STAGE
    ========================================= */

.constructor__stage-wrapper {
    flex: 1;
    min-height: 0;
    display: grid;
    padding: 25px;
}

.constructor__stage {
    width: min(1250px, 100%);
    height: min(700px, calc(100vh - 125px));
    min-height: 500px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef, #d9dee3);

    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(20, 25, 30, 0.08);
}

#editor {
    display: block;
    max-width: 100%;
    max-height: 100%;
    background: #fff;
    cursor: crosshair;
}

.constructor__empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #f6f8f9, #e5e9ec);

    text-align: center;
    pointer-events: none;
}

.constructor__empty-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    position: relative;
    border: 2px solid #aeb6bc;
    border-radius: 20px;
}

.constructor__empty-icon::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 15px;
    height: 25px;
    border-left: 2px solid #aeb6bc;
    border-bottom: 2px solid #aeb6bc;
    transform: skew(-14deg);
}

.constructor__empty h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.constructor__empty p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 950px) {
    .constructor {
        grid-template-columns: 1fr;
    }

    .constructor__sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .constructor__stage {
        height: 65vh;
    }
}

/* Keep editor controls within their own layout and stacking context. */
.constructor {
    position: relative;
    isolation: auto;
    z-index: auto;
}

.constructor__workspace {
    position: relative;
    z-index: auto;
}

.constructor__top {
    position: relative;
    z-index: 4;
    flex-wrap: wrap;
}

.constructor__actions {
    flex-wrap: wrap;
}

.constructor .btn:not(:disabled),
.constructor .stone {
    cursor: pointer;
}

.constructor .btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.constructor #editor {
    touch-action: none;
}

@media (max-width: 600px) {
    .constructor__top {
        padding: 16px;
    }

    .constructor__actions {
        width: 100%;
    }

    .constructor__actions .btn {
        flex: 1 1 140px;
    }

    .constructor__stage-wrapper {
        padding: 12px;
    }

    .constructor__stage {
        min-height: 260px;
    }
}


/* Canvas: 1; existing theme menu: 15; editor toolbar: 16. */
.constructor__stage-wrapper {
    position: relative;
    z-index: 1;
}

/* Tutorial cards: scoped to this page, without changing menu layers. */
.constructor-page .constructor-tutorials {
    margin: 48px 0 64px;
    color: #202428;
}

.constructor-page .constructor-tutorials__eyebrow {
    color: #fddd6f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.constructor-page .constructor-tutorials__heading h2 {
    margin: 10px 0 12px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 600;
}

.constructor-page .constructor-tutorials__heading p {
    margin: 0;
    color: #747b82;
    font-size: 14px;
    line-height: 1.6;
}

.constructor-page .constructor-tutorials__media {
    aspect-ratio: 16 / 9;
    background: #f4f5f7;
}

.constructor-page .constructor-tutorials__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #202428;
}

.constructor-page .constructor-tutorials__placeholder {
    display: flex;
    height: 100%;
    min-height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
    color: #747b82;
    background: linear-gradient(140deg, #faf7f5, #eceff1);
}

.constructor-page .constructor-tutorials__play {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #fddd6f;
    font-size: 16px;
    box-shadow: 0 4px 16px #2024280d;
}

/* Range controls retain native keyboard and touch interaction. */
.constructor .range {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    margin-top: 18px;
}

.constructor .range__label {
    grid-column: 1;
    grid-row: 1;
    font-size: 12px;
    line-height: 1.4;
}

.constructor .range output {
    grid-column: 2;
    grid-row: 1;
    min-width: 48px;
    padding: 4px 7px;
    border-radius: 6px;
    background: #fff8df;
    color: #6a5314;
    font-size: 11px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.constructor .range input[type="range"] {
    grid-column: 1 / -1;
    grid-row: 2;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    min-width: 0;
    height: 32px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    accent-color: #fddd6f;
}

.constructor .range input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border: 0;
    border-radius: 8px;
    background: #e3e6e9;
}

.constructor .range input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    margin-top: -7px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fddd6f;
    box-shadow: 0 0 0 1px #fddd6f, 0 2px 5px #20242826;
}

.constructor .range input[type="range"]::-moz-range-track {
    height: 6px;
    border: 0;
    border-radius: 8px;
    background: #e3e6e9;
}

.constructor .range input[type="range"]::-moz-range-progress {
    height: 6px;
    border-radius: 8px;
    background: #fddd6f;
}

.constructor .range input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fddd6f;
    box-shadow: 0 0 0 1px #fddd6f, 0 2px 5px #20242826;
}

.constructor .range input[type="range"]:focus-visible {
    outline: 2px solid #fddd6f;
    outline-offset: 2px;
    border-radius: 6px;
}

.constructor .range input[type="range"]:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 800px) {
    .constructor-page .constructor-tutorials {
        margin: 32px 0 40px;
    }
}

/* Quiet controls with a restrained gold accent. */
.constructor .btn {
    background: #fff;
    border: 1px solid #deded8;
    color: #34372f;
    box-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

.constructor .btn:not(:disabled):hover {
    background: #f5f5f1;
    border-color: #bbbdb3;
    color: #23241f;
}

.constructor .btn--active {
    background: #faf6e8;
    border-color: #b9a46a;
    color: #50462d;
    box-shadow: inset 0 0 0 1px #b9a46a;
}

.constructor .btn--accent {
    background: #efdfa9;
    border-color: #dcc98c;
    color: #393323;
    font-weight: 600;
}

.constructor .btn--accent:not(:disabled):hover {
    background: #e7d597;
    border-color: #cbb570;
}

.constructor .btn:disabled {
    background: #f4f4f1;
    border-color: #e5e5df;
    color: #888b81;
    opacity: 1;
    cursor: not-allowed;
}

.constructor .btn:focus-visible,
.constructor .range input[type="range"]:focus-visible {
    outline-color: #806b32;
}

.constructor .range output {
    background: #f4f4ef;
    color: #57594f;
}

.constructor .range input[type="range"]::-webkit-slider-runnable-track {
    background: #e4e5de;
}

.constructor .range input[type="range"]::-moz-range-track {
    background: #e4e5de;
}

.constructor .range input[type="range"]::-moz-range-progress {
    background: #bdab76;
}

.constructor .range input[type="range"]::-webkit-slider-thumb {
    background: #d5c38e;
    box-shadow: 0 0 0 1px #9d8b58, 0 2px 5px #20242816;
}

.constructor .range input[type="range"]::-moz-range-thumb {
    background: #d5c38e;
    box-shadow: 0 0 0 1px #9d8b58, 0 2px 5px #20242816;
}

.constructor .stone.active {
    border-color: #b9a46a;
    box-shadow: 0 0 0 1px #b9a46a;
}

.constructor .stone.active .stone__check {
    background: #efdfa9;
    border-color: #b9a46a;
    color: #393323;
}

.constructor-page #countertop-constructor {
    scroll-margin-top: 150px;
}

.constructor-page .constructor-tutorials__eyebrow {
    color: #736443;
}

.constructor-page .constructor-tutorials__media {
    width: 100%;
    max-width: 960px;
    margin: 24px auto 0;
    overflow: hidden;
    border: 1px solid #e3e6e9;
    border-radius: 16px;
}

.constructor-page .constructor-tutorials__play {
    background: #efdfa9;
    color: #393323;
}

.constructor-page .constructor-tutorials__story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    margin-top: 36px;
    padding: clamp(20px, 3vw, 36px);
    background: #f8f8f5;
    border-radius: 16px;
}

.constructor-page .constructor-tutorials__intro h3 {
    margin: 12px 0 16px;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.3;
    font-weight: 600;
    color: #30342c;
}

.constructor-page .constructor-tutorials__intro p {
    margin: 0 0 14px;
    color: #5d6257;
    font-size: 14px;
    line-height: 1.8;
}

.constructor-page .constructor-tutorials__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 8px 0;
    color: #51452b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.constructor-page .constructor-tutorials__link:hover {
    color: #23241f;
}

.constructor-page .constructor-tutorials__link:focus-visible {
    outline: 2px solid #806b32;
    outline-offset: 4px;
}

.constructor-page .constructor-tutorials__benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e3e4dc;
}

.constructor-page .constructor-tutorials__benefit:first-child {
    padding-top: 0;
}

.constructor-page .constructor-tutorials__benefit:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.constructor-page .constructor-tutorials__number {
    flex: 0 0 32px;
    color: #8a7950;
    font-size: 13px;
    line-height: 24px;
    font-variant-numeric: tabular-nums;
}

.constructor-page .constructor-tutorials__benefit h3 {
    margin: 0 0 8px;
    color: #30342c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.constructor-page .constructor-tutorials__benefit p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #5d6257;
}

.constructor-page .constructor-tutorials__note {
    margin: 20px 0 0;
    max-width: 900px;
    font-size: 12px;
    line-height: 1.7;
    color: #70756a;
}

@media (max-width: 800px) {
    .constructor-page .constructor-tutorials__story {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* A single video expands inside the SEO block; native details supports keyboard input. */
.constructor-page .constructor-tutorials__video-disclosure {
    grid-column: 1 / -1;
    min-width: 0;
    border-top: 1px solid #e3e4dc;
    padding-top: 20px;
}

.constructor-page .constructor-tutorials__video-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 10px 16px;
    box-sizing: border-box;
    list-style: none;
    cursor: pointer;
    border: 1px solid #deded8;
    border-radius: 10px;
    background: #fff;
    color: #393b33;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.constructor-page .constructor-tutorials__video-toggle::-webkit-details-marker {
    display: none;
}

.constructor-page .constructor-tutorials__video-toggle:hover {
    background: #faf8f0;
    border-color: #b9a46a;
}

.constructor-page .constructor-tutorials__video-toggle:focus-visible {
    outline: 2px solid #806b32;
    outline-offset: 3px;
}

.constructor-page .constructor-tutorials__video-icon {
    color: #806b32;
    font-size: 12px;
}

.constructor-page .constructor-tutorials__video-chevron {
    margin-left: auto;
    font-size: 20px;
}

.constructor-page .constructor-tutorials__video-label--open {
    display: none;
}

.constructor-page .constructor-tutorials__video-disclosure[open] .constructor-tutorials__video-label--open {
    display: inline;
}

.constructor-page .constructor-tutorials__video-disclosure[open] .constructor-tutorials__video-label--closed {
    display: none;
}

.constructor-page .constructor-tutorials__video-disclosure[open] .constructor-tutorials__video-chevron {
    transform: rotate(180deg);
}

.constructor-page .constructor-tutorials__video-disclosure .constructor-tutorials__media {
    margin-top: 18px;
}

/* Real stone image thumbnails, shared with the canvas texture. */
.constructor img.stone__preview {
    display: block;
    object-fit: cover;
    background: #f2f2ee;
}

.constructor img.stone__preview[hidden] {
    display: none;
}

.constructor .stone__info {
    grid-column: 2;
}

.constructor .stone__check {
    grid-column: 3;
}

.constructor-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 24px;
    width: calc(100% - 40px);
    max-width: 1180px;
    padding: 18px 20px 18px 24px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .14);
    transform: translateX(-50%);
    transition: .28s ease;
}

.constructor-banner.is-hidden {
    opacity: 0;
    transform: translate(-50%, calc(100% + 50px));
    pointer-events: none
}

.constructor-banner__content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0
}

.constructor-banner__icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    background: #151515;
    color: #fff
}

.constructor-banner__icon svg {
    width: 24px;
    height: 24px
}

.constructor-banner__text {
    min-width: 0
}

.constructor-banner__title {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.25
}

.constructor-banner__description {
    margin: 0;
    color: #6f6f6f;
    line-height: 1.45; 
    font-size:16px;
}

.constructor-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto
}

.constructor-banner__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    background: #151515;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap
}

.constructor-banner__link:hover {
    background: #333
}

.constructor-banner__link svg {
    width: 18px;
    height: 18px
}

.constructor-banner__close {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #f1f1ef;
    color: #222;
    cursor: pointer
}

.constructor-banner__close:hover {
    background: #e7e7e4
}

.constructor-banner__close svg {
    width: 20px;
    height: 20px
}

@media(max-width:760px) {
    .constructor-banner {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 14px;
        gap: 12px
    }

    .constructor-banner__icon,
    .constructor-banner__description {
        display: none
    }

    .constructor-banner__link {
        min-height: 44px;
        padding: 0 14px
    }

    .constructor-banner__close {
        width: 44px;
        height: 44px
    }
}

@media(max-width:520px) {
    .constructor-banner__link span {
        display: none
    }

    .constructor-banner__link {
        width: 44px;
        padding: 0
    }
}