@charset "UTF-8";

/* --------------------------------------------------
 Base
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --gold-light: #FADFAD;
    --gold-dark: #C8A252;
    --silver-light: #f5f5f5;
    --silver-dark: #dfdfdf;
}

body {
    background: #eeeeee;
    color: #282828;
    font-weight: 100%;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    position: relative;
}

body::before {
    content: "";
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(200, 200, 200, 0.1) 0%, transparent 20%);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

img {
    max-width: 100%;
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* --------------------------------------------------
 Header
-------------------------------------------------- */

#header {
    background: linear-gradient(180deg, var(--silver-dark) 0%, #ffffff 25%, var(--silver-light) 50%, var(--silver-dark) 100%);
    width: 100%;
    min-width: 320px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
    z-index: 998;
}

#header .top-bar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
}

#header .logo {
    padding: 10px 0;
    max-width: 200px;
}

#header .logo a {
    color: #c8a252;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #7f7f7f 0%, #333333 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#header .logo a .platinum {
    background: linear-gradient(135deg, #bf953f 0%, #e1d876 50%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

#header .menu-items {
    display: flex;
    margin-left: 60px;
    overflow: hidden;
}

#header .menu-items .item {
    color: #282828;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    padding: 24px 16px;
    position: relative;
}

#header .menu-items .item:hover {
    color: #111111;
}

#header .menu-items .item.active {
    background: #ffffff3d;
}

#header .menu-items .item::after {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#header .menu-items .item.active::after {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
}

#header .menu-items .item .icn {
    width: 20px;
    margin-right: 5px;
}

#header .menu-items .item.active .icn {
    filter: brightness(0) saturate(100%) invert(83%) sepia(87%) saturate(1091%) hue-rotate(327deg) brightness(89%) contrast(84%);
}

#header .menu-items .item.active .txt {
    color: #d4af37;
}

@media screen and (max-width: 640px) {
    #header > .comm-blc {
        padding: 0;
    }
    #header .logo {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 10px;
    }
    #header .menu-items {
        width: 100%;
        margin-left: 0;
    }
    #header .menu-items .item {
        width: 50%;
        padding: 10px 16px;
    }
}

/* --------------------------------------------------
 Menu Top
-------------------------------------------------- */

#menu-top {
    background: #ffffffa8;
    border-top: 1px solid #fff;
}

#menu-top .items {
    display: flex;
}

#menu-top .items .item {
    font-size: 14px;
    font-weight: 600;
    color: #555e61;
    text-decoration: none;
    padding: 17px 15px;
    display: flex;
    align-items: center;
    position: relative;
}

#menu-top .items .item:hover {
    color: #2d2c28;
}

#menu-top .items .item.active {
    color: #d4af37;
}

#menu-top .items .item::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#menu-top .items .item.active::after {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
}

#menu-top .items .item .icn {
    width: 20px;
    margin-right: 5px;
}

#menu-top .items .item.active .icn {
    filter: brightness(0) saturate(100%) invert(83%) sepia(87%) saturate(1091%) hue-rotate(327deg) brightness(89%) contrast(84%);
}

@media screen and (max-width: 640px) {
    #menu-top .items .item {
        padding: 11px 8px;
    }
    #menu-top .items .item .icn {
        display: none;
    }
}

/* --------------------------------------------------
 Contents
-------------------------------------------------- */

#contents {
    margin-top: 24px;
}

#contents .inner-blc {
    background: #fff;
    border-radius: 8px;
    padding: 16px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

#contents .inner-blc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
}

@media screen and (max-width: 640px) {
    #contents {
        margin-top: 10px;
    }
    #contents > .comm-blc {
        padding: 0;
    }
    #contents .inner-blc {
        padding: 0;
    }
}

/* --------------------------------------------------
 Detail Breadcrumbs
-------------------------------------------------- */

.detail-breadcrumbs {
    align-items: center;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr auto;
    position: relative;
    z-index: 2;
}

.breadcrumbs-content {
    color: #555e61;
    font-size: 12px;
    padding: 0 16px 4px;
}

.breadcrumbs-content .breadcrumb-list {
    text-align: left;
    margin: 0;
    padding: 0 0 12px;
    white-space: nowrap;
}

.breadcrumbs-content .breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs-content .breadcrumb-item a {
    color: #555e61;
    text-decoration: none;
}

.breadcrumbs-content .breadcrumb-item a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 640px) {
    .breadcrumbs-content {
        padding-top: 16px;
    }
}