.kwce-wrap {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
    color: #17191f;
    font-family: inherit;
}

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

.kwce-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 750;
}

.kwce-breadcrumbs a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.kwce-breadcrumbs a:hover {
    color: #ff7a12;
}

.kwce-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.28);
}

.kwce-hero {
    display: block;
    width: 100vw;
    min-height: 164px;
    margin-right: calc(50% - 50vw);
    margin-bottom: 34px;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    border: 1px solid rgba(255, 122, 18, 0.28);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background:
        linear-gradient(115deg, #10171f 0%, #151b22 54%, #3a1b0c 100%);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.kwce-hero-content {
    width: min(1500px, calc(100% - 48px));
    min-width: 0;
    margin: 0 auto;
    padding: 28px 34px 30px;
}

.kwce-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.kwce-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
}

.kwce-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 850;
}

.kwce-meta svg,
.kwce-subcat svg,
.kwce-product-arrow svg {
    width: 15px;
    height: 15px;
    color: #ff7a12;
    fill: currentColor;
    flex: 0 0 auto;
}

.kwce-section-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin: 0 0 22px;
    text-align: center;
}

.kwce-section-head h2 {
    position: relative;
    margin: 0;
    color: #17191f;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.kwce-section-head h2::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: #ff7a12;
}

.kwce-section-head span {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #647084;
    font-size: 13px;
    font-weight: 850;
}

.kwce-subcats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.kwce-subcat {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 34px;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 13px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kwce-subcat:hover {
    border-color: rgba(255, 122, 18, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.kwce-subcat img {
    width: 64px;
    height: 64px;
    border-radius: 7px;
    object-fit: contain;
    background: #f3f3f0;
}

.kwce-subcat strong,
.kwce-subcat em {
    display: block;
    line-height: 1.25;
}

.kwce-subcat strong {
    overflow: hidden;
    color: #20242b;
    font-size: 14px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kwce-subcat em {
    margin-top: 5px;
    color: #7a828d;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.kwce-subcat > svg {
    justify-self: center;
}

.kwce-products {
    display: grid;
    grid-template-columns: repeat(var(--kwce-columns), minmax(0, 1fr));
    gap: 14px;
}

.kwce-product {
    overflow: hidden;
    border: 1px solid rgba(213, 160, 98, 0.24);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kwce-product:hover {
    border-color: rgba(255, 122, 18, 0.44);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.kwce-product-image {
    position: relative;
    display: block;
    height: 146px;
    margin: 8px 8px 0;
    overflow: hidden;
    border-radius: 6px;
    background: #f1f2ef;
}

.kwce-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 13px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.kwce-product:hover .kwce-product-image img {
    transform: scale(1.04);
}

.kwce-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ff7a12;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.kwce-product-body {
    padding: 11px 12px 12px;
}

.kwce-product h3 {
    display: -webkit-box;
    min-height: 39px;
    margin: 0;
    overflow: hidden;
    color: #151922;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.kwce-product h3 a {
    color: inherit;
    text-decoration: none;
}

.kwce-product-cats {
    overflow: hidden;
    margin-top: 6px;
    color: #858585;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kwce-product-foot {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    min-height: 42px;
    margin-top: 8px;
}

.kwce-product-price {
    min-width: 0;
    color: #ff6f0a;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 950;
}

.kwce-product-price del {
    display: inline-block;
    margin-right: 6px;
    color: #9aa2ad;
    font-size: 13px;
    font-weight: 750;
}

.kwce-product-price ins {
    text-decoration: none;
}

.kwce-product-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 122, 18, 0.65);
    border-radius: 999px;
    color: #ff7a12;
    text-decoration: none;
    flex: 0 0 auto;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kwce-product-arrow:hover {
    background: #ff7a12;
    color: #fff;
    transform: translateX(1px);
}

.kwce-product-arrow svg {
    color: currentColor;
}

.kwce-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.kwce-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(20, 24, 32, 0.1);
    border-radius: 999px;
    background: #fff;
    color: #20242b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.kwce-pagination a.is-active,
.kwce-pagination a:hover {
    border-color: #ff7a12;
    background: #ff7a12;
    color: #fff;
}

.kwce-seo-content {
    clear: both;
    margin-top: 34px;
    padding: 28px 30px;
    border: 1px solid rgba(213, 160, 98, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 248, 240, 0.72), rgba(255, 255, 255, 0.96)),
        #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.kwce-seo-content h2 {
    margin: 0 0 14px;
    color: #17191f;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.kwce-seo-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 550;
}

.kwce-seo-text > *:first-child {
    margin-top: 0;
}

.kwce-seo-text > *:last-child {
    margin-bottom: 0;
}

.kwce-seo-text h2,
.kwce-seo-text h3,
.kwce-seo-text h4 {
    margin: 22px 0 10px;
    color: #17191f;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.kwce-seo-text a {
    color: #ff6f0a;
    font-weight: 800;
}

.kwce-seo-text ul,
.kwce-seo-text ol {
    padding-left: 22px;
}

.kwce-single-wrap {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #17191f;
    font-family: inherit;
}

.kwce-single-wrap *,
.kwce-single-wrap *::before,
.kwce-single-wrap *::after {
    box-sizing: border-box;
}

.kwce-single-band {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 122, 18, 0.28);
    border-bottom: 1px solid rgba(255, 122, 18, 0.28);
    background: #11100f;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.kwce-single-hero {
    display: grid;
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: stretch;
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}

.kwce-single-gallery,
.kwce-single-summary {
    min-width: 0;
}

.kwce-single-main-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(213, 160, 98, 0.22);
    border-radius: 8px;
    background: #f1f2ef;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.kwce-single-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 470px;
    padding: 32px;
    object-fit: contain;
    transition: opacity 0.18s ease, transform 0.22s ease;
}

.kwce-single-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 122, 18, 0.34);
    border-radius: 999px;
    background: rgba(16, 23, 31, 0.78);
    color: #ff7a12;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.kwce-single-gallery-nav:hover,
.kwce-single-gallery-nav:focus {
    border-color: #ff7a12;
    background: #ff7a12;
    color: #fff;
    outline: 0;
    transform: translateY(-50%) scale(1.04);
}

.kwce-single-gallery-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.kwce-single-gallery-nav svg path {
    fill: currentColor;
}

.kwce-single-gallery-prev {
    left: 14px;
}

.kwce-single-gallery-next {
    right: 14px;
}

.kwce-single-sale {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ff7a12;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.kwce-single-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.kwce-single-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #f1f2ef !important;
    color: inherit !important;
    cursor: pointer;
    box-shadow: none !important;
    transform: none !important;
    transition: none;
}

.kwce-single-thumb:hover,
.kwce-single-thumb:focus {
    border-color: rgba(255, 255, 255, 0.12);
    background: #f1f2ef !important;
    color: inherit !important;
    outline: 0;
    box-shadow: none !important;
    transform: none !important;
}

.kwce-single-thumb.is-active {
    border-color: rgba(255, 122, 18, 0.82);
    background: #f1f2ef !important;
    color: inherit !important;
    box-shadow: none !important;
    transform: none !important;
}

.kwce-single-thumbs img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.kwce-single-summary h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: 0;
}

.kwce-single-summary {
    padding: 10px 0;
}

.kwce-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
}

.kwce-single-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 850;
}

.kwce-single-badges svg,
.kwce-single-badges i,
.kwce-single-meta svg,
.kwce-single-meta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    color: #ff7a12;
    fill: currentColor;
    line-height: 1;
    flex: 0 0 auto;
}

.kwce-single-badges svg path,
.kwce-single-meta svg path {
    fill: currentColor;
}

.kwce-single-short {
    max-width: 780px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.kwce-single-short > *:first-child {
    margin-top: 0;
}

.kwce-single-short > *:last-child {
    margin-bottom: 0;
}

.kwce-single-buy {
    display: block;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.kwce-single-price {
    color: #ff7a12;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 950;
}

.kwce-single-price del {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
    font-weight: 750;
}

.kwce-single-price ins {
    text-decoration: none;
}

.kwce-single-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.kwce-single-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kwce-single-action:hover {
    color: #fff;
    transform: translateY(-1px);
}

.kwce-single-action svg,
.kwce-single-action i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    fill: currentColor;
    line-height: 1;
    flex: 0 0 auto;
}

.kwce-single-action svg path {
    fill: currentColor;
}

.kwce-single-action-whatsapp {
    background: linear-gradient(180deg, #25d366, #14a94d);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.2);
}

.kwce-single-action-call {
    background: linear-gradient(180deg, #ff8a17, #f36f08);
    box-shadow: 0 10px 22px rgba(255, 122, 18, 0.22);
}

.kwce-single-features {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 122, 18, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.kwce-single-features h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: 0;
}

.kwce-single-features ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kwce-single-features li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 750;
}

.kwce-single-features li svg,
.kwce-single-features li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: #ff7a12;
    fill: currentColor;
    line-height: 1;
    flex: 0 0 auto;
}

.kwce-single-features li svg path {
    fill: currentColor;
}

.kwce-single-cart form.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 0;
}

.kwce-single-cart .quantity {
    margin: 0;
}

.kwce-single-cart .qty {
    width: 72px;
    height: 44px;
    border: 1px solid rgba(255, 122, 18, 0.3);
    border-radius: 7px;
    background: #fff;
    color: #17191f;
    font-weight: 850;
    text-align: center;
}

.kwce-single-cart .button,
.kwce-single-cart button.single_add_to_cart_button,
.kwce-single-cart a.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 44px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(180deg, #ff8a17, #f36f08) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(255, 122, 18, 0.22);
}

.kwce-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
}

.kwce-single-meta span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.kwce-single-meta strong {
    color: rgba(255, 255, 255, 0.94);
    font-weight: 900;
}

.kwce-single-meta a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.kwce-single-meta a:hover {
    color: #ff7a12;
}

.kwce-single-details {
    width: min(1500px, calc(100% - 48px));
    margin: 34px auto 0;
    padding-bottom: 0;
}

.kwce-single-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 18px;
}

.kwce-single-detail-grid:empty {
    display: none;
}

.kwce-single-description,
.kwce-single-specs {
    padding: 26px 28px;
    border: 1px solid rgba(213, 160, 98, 0.24);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.kwce-single-description h2,
.kwce-single-specs h2 {
    margin: 0 0 14px;
    color: #17191f;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.kwce-single-description {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 550;
}

.kwce-single-description > div > *:first-child {
    margin-top: 0;
}

.kwce-single-description > div > *:last-child {
    margin-bottom: 0;
}

.kwce-single-specs dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.kwce-single-specs dl div {
    display: grid;
    grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(20, 24, 32, 0.08);
}

.kwce-single-specs dl div:last-child {
    border-bottom: 0;
}

.kwce-single-specs dt,
.kwce-single-specs dd {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.45;
}

.kwce-single-specs dt {
    color: #17191f;
    font-weight: 900;
}

.kwce-related-wrap {
    color: #17191f;
    font-family: inherit;
}

.kwce-related-wrap *,
.kwce-related-wrap *::before,
.kwce-related-wrap *::after {
    box-sizing: border-box;
}

.kwce-related-band {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 50px 0 100px;
    border-top: 1px solid rgba(255, 122, 18, 0.28);
    border-bottom: 1px solid rgba(255, 122, 18, 0.28);
    background: #11100f;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.kwce-related-inner {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}

.kwce-related-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    text-align: center;
}

.kwce-related-head h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: 0;
}

.kwce-related-head h2::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: #ff7a12;
}

.kwce-related-products .kwce-product {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.kwce-empty,
.kwce-notice {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(255, 122, 18, 0.24);
    border-radius: 8px;
    background: rgba(255, 248, 240, 0.8);
    color: #4b5563;
    font-size: 14px;
    font-weight: 750;
}

@media (max-width: 1180px) {
    .kwce-products,
    .kwce-subcats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .kwce-wrap {
        width: min(100% - 28px, 1500px);
    }

    .kwce-hero-content {
        width: min(100% - 28px, 1500px);
        padding: 24px 20px;
    }

    .kwce-hero h1 {
        font-size: 27px;
    }

    .kwce-section-head {
        align-items: center;
        justify-content: center;
        min-height: auto;
        margin-bottom: 18px;
    }

    .kwce-section-head h2 {
        font-size: 25px;
    }

    .kwce-section-head span {
        position: static;
        display: block;
        margin-top: 8px;
    }

    .kwce-subcats,
    .kwce-products {
        grid-template-columns: 1fr;
    }

    .kwce-product-image {
        height: 180px;
    }

    .kwce-single-band {
        padding: 30px 0;
    }

    .kwce-related-band {
        padding: 30px 0 100px;
    }

    .kwce-related-inner {
        width: min(100% - 28px, 1500px);
    }

    .kwce-related-head h2 {
        font-size: 25px;
    }

    .kwce-single-hero,
    .kwce-single-details {
        width: min(100% - 28px, 1500px);
    }

    .kwce-single-hero,
    .kwce-single-detail-grid {
        grid-template-columns: 1fr;
    }

    .kwce-single-main-image {
        min-height: 300px;
    }

    .kwce-single-summary h1 {
        font-size: 28px;
    }

    .kwce-single-buy {
        grid-template-columns: 1fr;
    }

    .kwce-single-actions,
    .kwce-single-features ul {
        grid-template-columns: 1fr;
    }

    .kwce-single-cart form.cart {
        align-items: stretch;
        flex-direction: column;
    }

    .kwce-single-cart .qty,
    .kwce-single-cart .button,
    .kwce-single-cart button.single_add_to_cart_button,
    .kwce-single-cart a.single_add_to_cart_button {
        width: 100%;
    }

    .kwce-seo-content {
        padding: 22px 18px;
    }

    .kwce-seo-content h2 {
        font-size: 21px;
    }
}
