:root {
    --color-light: #ddd;
    --color-icons: #4d423e;
    --color-specifications: #4d423e;
    --color-product-name: #4d423e;
    --color-product-ns-name: #4d423e;

    --size-page-width: 21cm;
    --size-page-height: 29.7cm;
    --size-image-height: 4cm;
    --size-gaps: 0.3cm;
    --size-icon: 1.2rem;
    
    --font-size-small: 0.9rem;
    --font-family: 'Dubai';
    --font-family-category-name: 'Dubai';
    
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family), sans-serif;
    margin: 0;
    padding: 0;
    width: var(--size-page-width);
    height: var(--size-page-height);
    box-sizing: border-box;
}

.brand {
    display: flex;
    justify-content: center;
    width: 100%;
    top: 160px;
    position: absolute;
    margin: auto;
    flex-direction: column;
    align-items: center;
}

.brand .logo {
    width: 45%;
}

.brand .catalog-title {
    color: var(--color-light);
    font-weight: 500;
    font-size: 1.8rem;
}

.product-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--size-gaps);
}


.product {
    display: flex;
    flex-direction: column;
    gap: var(--size-gaps);
    border: 1px solid var(--color-light);
    border-radius: var(--size-gaps);
    height: 8.5cm;
    text-align: center;
}

.product-placeholder {
    border: 0;
}

.product-image {
    max-height: var(--size-image-height);
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.product-image img {
    max-width: 100%;
    height: 100%;
}

.product-info {
    display: grid;
    justify-content: center;
    grid-template-rows: auto 30px 60px 35px;
    margin: var(--size-gaps);
    height: 100%;
}

.product-name {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2rem;
    color: var(--color-product-name);
}

.product-ns-name {
    padding: 0;
    margin: 0;
    font-size: var(--font-size-small);
    color: var(--color-product-ns-name);
}

.product-specifications {
    font-size: var(--font-size-small);
    color: var(--color-specifications);
    line-height: 1.2rem;
}

.product-handle ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3mm;
    justify-content: space-around;
}

.product-handle li {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    font-size: var(--font-size-small);
    width: max-content;
}

.product-handle img,
.product-handle svg {
    max-width: var(--size-icon);
    height: auto;
}

.product-handle-icon span {
    color: var(--color-icons);
    font-size: .8rem;
}

.page-seperator{
    margin-bottom: 2.1cm;
}

.ruler {
    width: var(--size-page-width);
    height: var(--size-page-height);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    border: 1px solid;
}


.category, .category-cover {
    height: calc(var(--size-page-height) - 1cm);
    text-align: center;
    margin: 0cm 1cm;
    border: 1px solid transparent;
}

.static-page {
    margin-top: 2cm;
    margin-bottom: 2cm;
}


.category h3 {
    margin-bottom: 20px;
    color: var(--color-icons);
}


.category-body {
    height: 95%;
    background-size: cover;
    margin-top: -1cm;
    position: relative;
    background-position: top;
    row-gap: .7cm;
}

.category-info {
    width: 500px;
    text-align: right;
    top: 50px;
    position: absolute;
    right: 50px;
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(2px);
    padding: 20px;
}

.category-name {
    font-size: 4rem;
    margin: 0;
    font-weight: 500;
    line-height: 1;
    font-family: var(--font-family-category-name);
}


.category-image {
    overflow: hidden;
    height: 16cm;
    display: flex;
    align-items: end;
}

.category-image img {
    max-width: 100%;
    object-fit: cover;
}


.page-header {
    display: flex;
    justify-content: space-between;
    padding: var(--size-gaps);
    margin-bottom: 1cm;
    font-weight: 600;
    font-size: var(--font-size-small);
    border-bottom: 1px solid var(--color-light);
}


.profile-page01-title {
    color: var(--color-light);
    font-size: 4rem;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.profile-page01-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    font-size: .9rem;
    margin: 1cm;
    text-align: left;
    gap: 3mm;
    align-items: flex-start;
    padding-top: 2cm;
}

.profile-page01-content .left {
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(2px);
    padding: 20px;
    list-style-type: none;
    margin: 0;
}

.profile-page01-content .right {
    color: var(--color-light);
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(2px);
    padding: 20px;
    list-style-type: none;
}


.profile-page02-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    font-size: .9rem;
    margin: 1cm;
    text-align: left;
    gap: 3mm;
    align-items: flex-start;
    padding-top: 2cm;
}

.profile-page02-content .left {
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(2px);
    padding: 20px;
    list-style-type: none;
    margin: 0;
    color: white;
}

.profile-page02-content .right {
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(2px);
    padding: 20px;
    list-style-type: none;
    margin: 0;
    color: white;
}

.products-category-item {
    height:4.5cm;
    border:1px solid var(--color-light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.products-category-info {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.products-category-name {
    background: #fff;
    width: 90%;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid var(--color-light);
    margin-bottom: -15px;
    font-size: 1.4rem;
}

.products-category-name a {
    color: inherit;
    text-decoration: none;
}

.category_link {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all .3s ease-in;
}

.backcover-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
    text-align: left;
}