.hero-section {
    position: relative;
}

.new-arrivals-countdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
    background-color: rgb(238, 36, 69);
}

.new-arrivals-countdown-text {
    color: white;
    font-family: Santral Medium;
    font-size: 16px;
}

.hero-description-wrap {
    padding: 20px 20px 0 20px;
    text-align: center;
}

.hero-description-text {
    color: rgb(60, 60, 60);
    font-family: SterlingDisplay Roman;
    font-size: 32px;
}

.product-category-wrap {
    display: none;
}

.main-search-bar-wrap {
    position: relative;
    column-gap: 20px;
    height: 40px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
}

.form {
    position: relative;
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: center;
    margin: 0px auto 0px auto;
    border: 1px solid rgb(220, 220, 220);
    box-shadow: 0 0 1px #6060604f, 0 4px 8px -2px #60606026;
}

    .form:hover {
        outline: 1px solid rgb(200, 200, 200);
    }

    .form:focus-within {
        outline: 1px solid rgb(200, 200, 200);
    }

.main-search-bar {
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-family: SterlingDisplay Roman;
    font-size: 18px;
    border: none;
    border-left: none;
}

.main-search-bar::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 30px;
    width: 30px;
    background-image: url("https://aurummarketplace.com/Images/x.svg");
    background-size: cover;
}

    .main-search-bar::-webkit-search-cancel-button:hover {
        cursor: pointer;
        filter: invert(50%);
    }

.main-search-bar:focus {
    outline: none;
}

.main-search-button-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 38px;
}

.main-search-button {
    position: relative;
    height: 32px;
    width: 32px;
    margin: auto;
    padding: 0px 0px 0px 0px;
    box-sizing: border-box;
    border: none;
    border-right: none;
    border-radius: 20px;
    z-index: 1;
    transition: 0.2s;
}

    .main-search-button:hover {
        cursor: pointer;
        height: 40px;
        width: 38px;
    }

    .main-search-button:hover > .magnifying-glass-search-wrap {
        height: 40px;
        width: 38px;
        background-color: rgb(60, 60, 60);
        border-radius: 0px 0px 0px 0px;
    }

.magnifying-glass-search-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: rgb(200 ,200, 200);
    border-radius: 20px;
    transition: 0.2s;
}

.magnifying-glass-search {
    position: relative;
    height: 22px;
    width: 22px;
    margin: auto;
}

    .magnifying-glass-search:hover {
        cursor: pointer;
    }

.custom-search-page-link {
    margin-left: 10%;
    color: rgb(160, 160, 160);
    font-family: Santral;
    font-size: 14px;
}

    .custom-search-page-link:hover {
        color: rgb(120, 120, 120);
    }

.hero-image-section {
    position: relative;
    height: 84vh;
    margin-top: -120px;
}

.hero-image-wrap {
    position: relative;
    top: -51px;
    height: calc(100% + 51px);
    width: 100%;
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, transparent 20%);
}

.hero-image-shadow {
    position: absolute;
    height: 100%;
    width: 100%;
    box-shadow: inset 0px 0px 400px 40px;
    transition: box-shadow 4s;
}

.hero-image {
    position: fixed;
    height: 100%;
    min-height: 600px;
    width: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.2);
    z-index: -1;
}

.hero-image-active {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: filter 0.2s, transform 0.2s, opacity 0.2s;
}

.hero-image-on-load {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
    transition: 1s;
}

.hero-left-button {
    position: absolute;
    top: 51px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 250px;
    padding: 0px;
    border: none;
    background-color: transparent;
}

    .hero-left-button:hover {
        cursor: pointer;
    }

    .hero-left-button:hover .circle-left {
        border-color: rgb(238, 36, 69);
    }

    .hero-left-button:hover .circle-left-triangle {
        border-top: 8px solid transparent;
        border-right: 12px solid rgb(238, 36, 69);
        border-bottom: 8px solid transparent;
    }

.circle-left {
    padding: 21px 21px 20px 19px;
    margin: auto;
    border: 2px solid rgb(50, 50, 50, 0.5);
    border-radius: 100%;
}

.circle-left-triangle {
    margin: 0px 4px 0px 2px;
    border-top: 8px solid transparent;
    border-right: 12px solid rgb(50, 50, 50, 0.5);
    border-bottom: 8px solid transparent;
}

.hero-right-button {
    position: absolute;
    top: 51px;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 250px;
    padding: 0px;
    border: none;
    background-color: transparent;
}

    .hero-right-button:hover {
        cursor: pointer;
    }

    .hero-right-button:hover .circle-right {
        border-color: rgb(238, 36, 69);
    }

    .hero-right-button:hover .circle-right-triangle {
        border-top: 8px solid transparent;
        border-left: 12px solid rgb(238, 36, 69);
        border-bottom: 8px solid transparent;
    }

.circle-right {
    padding: 21px 20px 20px 21px;
    margin: auto;
    border: 2px solid rgb(50, 50, 50, 0.5);
    border-radius: 100%;
}

.circle-right-triangle {
    margin: 0px 2px 0px 4px;
    border-top: 8px solid transparent;
    border-left: 12px solid rgb(50, 50, 50, 0.5);
    border-bottom: 8px solid transparent;
}

.showcase-nav {
	position: absolute;
    bottom: 0px;
	display: flex;
	justify-content: center;
	height: 80px;
	width: 100%;
}

.hero-option {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px 10px 20px;
	border-left: 1px solid rgba(0, 0, 0, 0.22);
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	font-family: SterlingDisplay Roman;
	font-size: 20px;
	color: rgb(50, 50, 50);
    box-sizing: border-box;
	transition-duration: 0.4s;
    z-index: 2;
}

    .hero-option:hover {
        box-shadow: inset 0 -5px 0 rgb(238, 36, 69);
    }

    .hero-option:hover h5 {
        bottom: 5px;
    }

.hero-option-one {
	border-left: none;
}

.hero-option-title {
    position: relative;
    bottom: 0px;
    margin: 0px;
	transition-duration: 0.3s;
}

.hero-option-active {
    box-shadow: inset 0 -5px 0 rgb(238, 36, 69);
}

.hero-option-active h5 {
    bottom: 5px;
}

.transition-decoration {
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.box {
    height: 40px;
    width: 350px;
    border-left: 1px solid rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
}

.box-first {
    border-left: none;
}

.transition-decoration-shadow {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.middle-section {
    position: relative;
    width: 100%;
    padding-top: 60px;
    background-color: rgb(242, 242, 249);
    z-index: 1;
}

.new-arrivals-section-wrap {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 70px;
    background-color: rgb(236, 236, 236);
    background: linear-gradient(white, rgb(236, 236, 236) 15%);
}

.new-arrivals-welcome-header {
    display: none;
}

.new-arrivals-header {
    padding-bottom: 10px;
    text-align: center;
}

.new-arrivals-title {
    color: rgb(40, 40, 40);
    font-family: SterlingDisplay Roman;
    font-size: 32px;
}

.new-arrivals-link {
    color: rgb(40, 40, 40);
    font-family: Santral Medium;
    font-size: 12px;
}

.new-arrivals-text {
    display: inline-block;
    text-decoration: none;
    color: rgb(40, 40, 40);
}

    .new-arrivals-text:hover {
        cursor: pointer;
    }

.new-arrivals-text:after {
    position: relative;
    bottom: 2px;
    height: 2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 1px solid rgb(238, 36, 69);
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}
    
    .new-arrivals-text:hover:after {
        transform: scaleX(1);
    }

.from-left:after {
    transform-origin: 0% 50%;
}
    
.new-arrivals-link-arrow {
    height: 8px;
    width: 8px;
    filter: brightness(50%);
}

.new-arrivals-item-container {
    position: relative;
	left: 2%;
    width: 96%;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    overflow: hidden;
}

.new-arrivals-category {
    position: relative;
    padding-bottom: 42px;
    min-height: 250px;
    width: 100%;
    background-color: white;
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.7s,
                opacity 0.7s;
}

.new-arrivals-item-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-family: SterlingDisplay Roman;
    font-size: max(1.5vw, 20px);
}

.new-arrivals-item-text {
    display: inline-block;
    text-decoration: none;
    color: rgb(40, 40, 40);
    font-family: Santral Medium;
    font-size: 12px;
}

.new-arrivals-item-text:after {
    position: relative;
    bottom: 2px;
    height: 2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 1px solid rgb(238, 36, 69);
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}

.new-arrivals-item-text:hover {
    cursor: pointer;
}

.new-arrivals-item-text:hover:after {
    transform: scaleX(1);
}

.new-arrivals-item-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.new-arrivals-row {
    display: flex;
    column-gap: 10px;
    padding-bottom: 16px;
    cursor: grab;
    overflow-x: overlay;
    overflow-y: hidden;
}

.new-arrivals-row::-webkit-scrollbar {
    height: 6px;
}

.new-arrivals-row::-webkit-scrollbar-track {
    background-color: transparent;
}

.new-arrivals-row::-webkit-scrollbar-thumb {
    display: none;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px
}

    .new-arrivals-row:hover::-webkit-scrollbar-thumb {
        display: block;
    }

.new-arrivals-item {
    position: relative;
    min-width: max(100px, calc(40% - 10px));
    margin-bottom: 54px;
    padding-top: max(100px, calc(40% - 10px));
}

.new-arrivals-image {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    opacity: 0;
    filter: blur(10px);
    transition: filter 0.4s;
}

.new-arrivals-image-first {
    opacity: 1;
    filter: blur(0px);
    transform-origin: 50% 50%;
    z-index: 0;
}

.new-arrivals-image-second {
    opacity: 0;
    z-index: 1;
}

    .new-arrivals-image-switch-toggle {
        opacity: 1;
        filter: blur(0px);
        transform-origin: 50% 50%;
    }

    .new-arrivals-image-switch-toggle + .new-arrivals-image-first {
        opacity: 1;
    }
	
.new-arrivals-title-price-wrap {
	position: absolute;
	width: 100%;
	margin-top: 5px;
	padding: 0px 5px 0px 5px;
	font-family: Santral Medium;
	font-size: 12px;
	box-sizing: border-box;
}

.new-arrivals-product-title {
    position: relative;
    display: -webkit-box;
    color: rgb(40, 40, 40);
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-arrivals-price-caption-wrap {
    display: flex;
    justify-content: left;
    column-gap: 4px;
}

.new-arrivals-item-price {
    white-space: nowrap;
    position: relative;
    color: rgb(120, 120, 120);
    font-family: Santral Medium;
    font-size: 12px;
    top: 0px;
    margin: 0px;
}

.product-new-arrival-caption {
    padding: 0px 8px 2px 8px;
    white-space: nowrap;
    color: white;
    font-family: Santral;
    font-size: 10px;
    background-color: rgb(40, 40, 40);
    border-radius: 10px;
}

@keyframes gradient { 
    0%   { background-position: 0 0; }
    100% { background-position: -200% 0; }
}

.category-links-section-wrap {
    height: 750px;
    width: 100%;
}

.category-links-container {
    
}

.category-links-header {
    text-align: center;
    padding-bottom: 10px;
}

.category-links-header-text {
    color: rgb(40, 40, 40);
    font-family: SterlingDisplay Roman;
    font-size: 32px;
}

.category-all-link {
    padding-top: 2px;
}

.category-all-link-text {
    display: inline-block;
    color: rgb(40, 40, 40);
    font-family: Montserrat Light;
    font-size: 12px;
    font-weight: 1000;
}

    .category-all-link-text:hover {
        cursor: pointer;
    }

.category-all-link-text:after {
    position: relative;
    bottom: 2px;
    height: 2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 1px solid rgb(100, 100, 100);
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}
    
    .category-all-link-text:hover:after {
        transform: scaleX(1);
    }
    
.category-all-link-arrow {
    height: 8px;
    width: 8px;
    filter: brightness(50%);
}

.view-all-categories-link {
    color: rgb(40, 40, 40);
    text-decoration: none;
}

.category-links-row {
    position: relative;
    left: 5%;
    width: 90%;
    display: flex;
    height: 325px;
}

.category-link {
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.7s,
                transform 0.7s;
}

.category-link:before {
    position: absolute;
    top: 2%;
    left: 5%;
    height: 80%;
    width: 90%;
    display: inline-block;
    content: "";
    border-top: 1px solid rgb(180, 180, 180);
    border-bottom: 1px solid rgb(180, 180, 180);
    transform: translateY(-1px) scaleX(0);
    transition: transform 1s;
}

.category-link:after {
    position: absolute;
    top: 2%;
    left: 5%;
    height: 80%;
    width: 90%;
    display: inline-block;
    content: "";
    border-left: 1px solid rgb(180, 180, 180);
    border-right: 1px solid rgb(180, 180, 180);
    transform: translateX(-1px) scaleY(0);
    transition: transform 1s;
}

    .category-link:hover {
        cursor: pointer;
    }

    .category-link:hover:before {
        transform: translateY(-1px) scaleX(1);
    }

    .category-link:hover:after {
        transform: translateX(-1px) scaleY(1);
    }

    .category-link:hover > img.category-link-image-ring {
        transform: translateY(-40px) scale(0.9);
    }

    .category-link:hover > img.category-link-image-bracelet {
        transform: translateY(-20px) scale(0.7);
    }

    .category-link:hover > img.category-link-image-necklace {
        transform: translateY(-30px) scale(0.9);
    }

    .category-link:hover > img.category-link-image-pendant {
        transform: translateY(-25px) scale(0.8);
    }

    .category-link:hover > img.category-link-image-earring {
        transform: translateY(-20px) scale(0.9);
    }

    .category-link:hover > img.category-link-image-brooch {
        transform: translateY(-20px) scale(0.9);
    }

.show-from-below {
    opacity: 1;
    transform: translateY(0px);
}

.category-link-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.category-link-image-ring {
    object-fit: contain;
    transform: translateY(-30px) scale(0.9);
}

.category-link-image-bracelet {
    object-fit: cover;
    transform: translateY(-10px) scale(0.7);
}

.category-link-image-necklace {
    transform: translateY(-20px) scale(0.9);
}

.category-link-image-pendant {
    transform: translateY(-15px) scale(0.8);
}

.category-link-image-earring {
    transform: translateY(-10px) scale(0.9);
}

.category-link-image-brooch {
    transform: translateY(-10px) scale(0.9);
}

.category-link-caption {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.category-link-caption-text {
    display: inline-block;
    color: black;
    font-family: Montserrat Light;
    font-size: 18px;
}

.style-links-header-text {
    text-align: center;
    color: rgb(40, 40, 40);
    font-family: SterlingDisplay Roman;
    font-size: 32px;
}

.services-section-wrap {
    position: relative;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: rgb(220, 220, 220);
}

.services-square {
    position: absolute;
    display: inline-block;
    height: 30px;
    width: 30px;
}

.services-square-top-left {
    top: 40px;
    left: 40px;
    border-bottom: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
}

.services-square-top-right {
    top: 40px;
    right: 40px;
    border-bottom: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
}

.services-square-bottom-left {
    bottom: 40px;
    left: 40px;
    border-top: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
}

.services-square-bottom-right {
    bottom: 40px;
    right: 40px;
    border-top: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
}

.services-square-larger {
    position: absolute;
    display: inline-block;
    height: 36px;
    width: 36px;
}

.services-square-largest {
    position: absolute;
    display: inline-block;
    height: 42px;
    width: 42px;
}

.services-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
    color: rgb(60, 60, 60);
    font-family: SterlingDisplay Roman;
    font-size: 42px;
    border-top: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
}

.services-header-caption {
    color: rgb(60, 60, 60);
    font-family: Santral Medium;
    font-size: 14px;
}

.services-row {
    position: relative;
    padding-bottom: 30px;
    width: 100%;
    display: flex;
    margin: auto;
    border-bottom: 1px solid rgb(160, 160, 160);
    border-left: 1px solid rgb(160, 160, 160);
    border-right: 1px solid rgb(160, 160, 160);
}

.services-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-top: 20px;
}

.services-3 {
    margin-top: 10px;
}

.services-item-image-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.services-item-image {
    height: 50px;
    width: 50px;
    margin: auto;
}

.services-offers-image {
    height: 65px;
    width: 65px;
}

.services-item-title {
    margin-top: 10px;
    text-align: center;
    color: rgb(60, 60, 60);
    font-family: Nunito;
    font-size: 14px;
    font-weight: 700;
}

.services-offers-title {
    margin-top: 0px;
}

.services-item-caption {
    text-align: center;
    font-family: Nunito;
    font-size: 14px;
}

.recommended-section-wrap {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.recommended-header {
    position: relative;
    width: 90%;
    padding-bottom: 10px;
    margin: auto;
    text-align: center;
    color: rgb(40, 40, 40);
    font-family: SterlingDisplay Roman;
    font-size: 32px;
}
    
.recommended-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.recommended-row {
    display: flex;
    column-gap: 12px;
    width: 100%;
    margin-bottom: 20px;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

.recommended-row-ring {
    background-color: rgb(250 ,250, 250);
}

.recommended-row-earrings {
    background-color: rgb(250 ,250, 250);
}

.recommended-sub-header {
    padding-bottom: 10px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

.sub-header-text {
    position: relative;
    top: 20px;
    vertical-align: middle;
    font-family: SterlingDisplay Roman;
    font-size: 36px;
}

.recommended-view-all-link {
    position: relative;
    top: 23px;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    text-decoration: none;
    color: black;
    font-family: Montserrat Light;
    font-size: 12px;
    font-weight: 1000;
}

.recommended-view-all-link:after {
    position: relative;
    bottom: 2px;
    height: 2px;
    width: 100%;
    display: block;
    content: '';
    border-bottom: 1px solid rgb(100, 100, 100);
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
}

    .recommended-view-all-link:hover {
        cursor: pointer;
    }

    .recommended-view-all-link:hover:after {
        transform: scaleX(1);
    }

.recommended-row-hero {
    width: 32%;
}

.recommended-row-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
}

.recommended-row-secondary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 73%;
}

.recommended-row-secondary-left {
    width: 27.2%;
}

.recommended-row-secondary-right {
    width: 40.8%;
}

.recommended-subrow {
    display: flex;
    column-gap: 12px;
}

.recommended-item {
    position: relative;
    width: 100%;
}

.recommended-item-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    height: 0%;
    width: 100%;
    padding-top: 100%;
    background-color: white;
    border-radius: 20px;
}

.recommended-item-product-link {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.recommended-item-image {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    filter: blur(10px);
    border-radius: 4px;
}

.recommended-item-image-active {
    display: block;
    opacity: 1;
    filter: blur(0px);
    transform-origin: 50% 50%;
    transition: filter 0.4s;
}

.recommended-item-title-price-wrap {
    position: absolute;
    top: 100%;
    margin-left: 2%;
    margin-right: 2%;
}

.recommended-item-title {
    position: relative;
    bottom: 0px;
    display: -webkit-box;
    margin-top: 2px;
    text-decoration: none;
    color: rgb(40, 40, 40);
    font-family: Santral Medium;
    font-size: 12px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommended-item-price {
    position: relative;
    bottom: 0px;
    margin-top: 2px;
    color: rgb(120, 120, 120);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

@media only screen and (max-width: 1250px) {
    .new-arrivals-item-header {
        padding: 20px 0px 10px 0px;
    }
    
    .new-arrivals-item-wrap {
        row-gap: 0px;
    }

    .new-arrivals-item {
        margin-bottom: 40px;
    }

    .new-arrivals-title-price-wrap {
        font-size: 12px;
    }
    
    .product-new-arrival-caption {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    
    .mobile-nav-icon-search-bar-wrap-disappear {
        transform: translateY(-100%);
        opacity: 0;
        z-index: -1;
    }

    .navigation-bar-swipe-scroll {
        top: 52px;
    }

    .hero-description-wrap {
        display: none;
        padding-top: 15px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-description-text {
        font-size: 24px;
    }

    .product-category-wrap {
        display: block;
        padding: 16px 0px 16px 0px;
    }

    .product-category-carousel {
        display: flex;
        column-gap: 10px;
        padding: 0px 16px 0px 16px;
        overflow-x: scroll;
    }

    .product-category-carousel::-webkit-scrollbar {
        display: none;
    }

    .product-category-link {
        padding: 5px 16px 3px 16px;
        text-decoration: none;
        color: rgb(120, 120, 120);
        font-family: Santral Medium;
        font-size: 14px;
        border: 1px solid rgb(160, 160, 160);
        border-radius: 10px;
    }

    .main-search-bar-wrap {
        display: none;
    }

    .custom-search-page-link {
        margin-left: 2%;
    }
    
    .hero-image-section {
        display: none;
    }

    .showcase-nav {
        display: none;
    }

    .hero-image-wrap {
        display: none;
    }

    .transition-decoration {
        display: none;
    }

    .transition-decoration-shadow {
        display: none;
    }

    .new-arrivals-section-wrap {
        padding-top: 1em;
        background: none;
        background-color: rgb(240, 240, 244);
    }

	.new-arrivals-welcome-header {
		display: block;
		position: relative;
		height: 3em;
	    margin: 0;
	    padding: 0;
	    text-align: center;
		color: rgb(120, 120, 60);
	    font-family: SterlingDisplay Roman;
	    font-size: 2em;
		opacity: 1;
		white-space: nowrap;
		transition: opacity 0.5s,
					height 1s,
					color 1s;
	}

    .new-arrivals-title {
        color: rgb(60, 60, 60);
        font-size: 24px;
    }

    .new-arrivals-link {
        font-family: Santral Medium;
        font-weight: 500;
    }
    
    .new-arrivals-text {
        color: rgb(60, 60, 60);
    }
    
    .new-arrivals-item-container {
        left: 0px;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        margin: auto;
    }

    .new-arrivals-category {
        min-height: 0px; /*Only purpose is to reset min-height*/
		margin: 0 0 2em 0;
	    padding-bottom: 0.25em;
        border-radius: 20px 20px 20px 20px;
    }

    .new-arrivals-item-header {
		flex-direction: row;
		margin: 0.5em 0 0.5em 0;
		padding: 0;
    }

    .new-arrivals-item-header-title {
		margin: 0;
		padding: 0.25em 0 0 0;
        color: rgb(120, 120, 60);
        font-size: 24px;
    }

    .new-arrivals-item-text {
	    justify-content: center; /* Vertical */
	    align-items: center; /* Horizontal */
		max-width: 20em;
		width: 100%;
		margin: auto 1em auto 1em;
		padding: 0.45em 0.25em 0.15em 0.25em;
        color: rgb(120, 120, 60, 60%);
        font-size: 16px;
		
		box-sizing: border-box;
		border: 1px solid rgb(120, 120, 60);
		border: none;
		border-radius: 3em;

		background-color: rgb(244, 240, 242, 50%);
	}
    
	.new-arrivals-link-arrow {
	    display: none;
	}

    .new-arrivals-item-wrap {
        padding: 0 0.5em 0 0.5em;
    }
	
	.new-arrivals-row {
	    display: flex;
	    height: 12.5em;
	    column-gap: 0.625em;
		margin: 0 0 0 0;
	    padding: 0 0 1em 0;
	    cursor: grab;
	    overflow-x: overlay;
	    overflow-y: hidden;
	}        
    .new-arrivals-item {
        min-width: calc(150px);
		height: 88px;
        padding: 8em 0 0 0;
    }

    .new-arrivals-image {
		height: 150px;
		width: 150px;
        filter: blur(0px);
        transition: opacity 0.5s;
    }
    
    .new-arrivals-image-switch-toggle {
        opacity: 1;
    }
    
    .new-arrivals-image-switch-toggle + .new-arrivals-image-first {
        opacity: 0;
    }
	
	.new-arrivals-title-price-wrap {
	    position: absolute;
	    width: 100%;
	    margin: 2.25em 0 0 0;
	    padding: 0 0 0 0.25em;
	    font-family: Santral Medium;
	    font-size: 12px;
	    box-sizing: border-box;
	}    
    .recommended-section-wrap {
        display: none;
    }

    .category-links-section-wrap {
        position: relative;
        height: 0px;
        padding-top: 180%;
    }

    .category-links-header {
        position: absolute;
        top: 0px;
        width: 100%;
    }

    .category-links-container {
        position: absolute;
        top: 65px;
        display: flex;
        width: 100%;
    }

    .category-links-row {
        left: 0px;
        flex-direction: column;
        height: 500px;
        width: 50%;
    }

    .category-link {
        height: 0px;
        padding-top: 100%;
    }

    .category-link-image {
        position: absolute;
        top: 0px;
    }

    .category-link-image-bracelet {
        object-fit: contain;
        transform: scale(0.9);
    }

    .category-link-image-necklace {
        transform: translateY(-20px)
                   scale(0.8);
    }

    .category-link-image-earring {
        transform: scale(1);
    }

    .category-link-image-brooch {
        transform: translateY(-10px)
                   scale(0.7);
    }

    .services-section-wrap {
        padding: 20px;
    }
    
    .services-square-top-left {
        top: 20px;
        left: 20px;
    }

    .services-square-top-right {
        top: 20px;
        right: 20px;
    }

    .services-square-bottom-left {
        bottom: 20px;
        left: 20px;
    }

    .services-square-bottom-right {
        bottom: 20px;
        right: 20px;
    }

    .services-header {
        padding-top: 80px;
        font-size: 32px;
        box-sizing: border-box;
    }

    .services-row {
        flex-direction: column;
        row-gap: 60px;
        padding-bottom: 80px;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .services-item-title {
        margin-top: 0px;
        font-family: Santral Bold;
    }

    .services-item-caption {
        color: rgb(60, 60, 60);
        font-family: Santral Medium;
    }

    .services-3 {
        margin-top: 0px;
    }

    .middle-section {
        padding-top: 40px;
    }

    .category-link:hover > img.category-link-image-ring {
        transform: translateY(-30px)
                   scale(0.9);
    }

    .category-link:hover > img.category-link-image-pendant {
        transform: translateY(-15px)
                   scale(0.8);
    }

    .category-link:hover > img.category-link-image-pendant {
        transform: translateY(-15px)
                   scale(0.8);
    }

    .category-link:hover > img.category-link-image-bracelet {
        transform: scale(0.9);
    }

    .category-link:hover > img.category-link-image-earring {
        transform: scale(1);
    }

    .category-link:hover > img.category-link-image-necklace {
        transform: translateY(-20px)
                   scale(0.8);
    }

    .category-link:hover > img.category-link-image-brooch {
        transform: translateY(-10px)
                   scale(0.7);
    }

    .category-link-caption {
        bottom: 10px;
    }
}

@media only screen and (max-width: 350px) {
    .product-new-arrival-caption {
        display: none;
    }
}

.pv-product-viewing-section {
    position: relative;
    top: 0px;
	min-width: 300px;
	max-width: 600px;
    width: 100vmin;
	height: auto;
	margin-left: auto;
	margin-right: auto;
    margin-top: 0px;
    margin-bottom: 0px;
	touch-action: manipulation;
	overflow: hidden;
}

.pv-product-carousel {
    position: relative;
	top: 0px;
	min-width: 300px;
	max-width: 600px;
	min-height: 300px;
	max-height: 600px;
    width: 100%;
    height: 100vmin;
	margin-left: auto;
	margin-right: auto;
	touch-action: manipulation;
    overflow: hidden;
    z-index: 1;
}

    .pv-control-panel {
		display: flex;
        position: absolute;
		margin: 1%;
		width: 100%;
		pointer-events: none;
		touch-action: manipulation;
		z-index: 3;
    }

	.pv-label {
	    position: relative;
		margin: 2% 0 0 2%;
	    color: black;
		font-family: Santral Medium;
		box-shadow: 0.5px 0.5px 0px 0px black;
		box-sizing: border-box;
		-webkit-user-select: none; /* Safari */
		-ms-user-select: none; /* IE 10 and IE 11 */
		user-select: none; /* Standard syntax */
		touch-action: manipulation;
	}

	.pv-button {
	    position: relative;
		width: 10%;
	    min-width: 60px;
	    min-height: 60px;
		margin: 0 1% 0 1%;
		box-shadow: 0.5px 0.5px 0px 0px #000000c2;
		box-sizing: border-box;
		border-radius: 30%;
	    color: black;
		font-family: Santral Medium;
		-webkit-user-select: none; /* Safari */
		-ms-user-select: none; /* IE 10 and IE 11 */
		user-select: none; /* Standard syntax */
		touch-action: manipulation;
	}
	
	    .pv-button:hover {
	        cursor: pointer;
			/*background: rgb(230 230 230 / 90%);*/
	    }

	.pv-top-left {
		top: 0;
		left: 0;
		justify-content: left;
		touch-action: manipulation;
	}

	.pv-index-label {
		padding: 1% 2% 0.5% 2%;
		background: rgb(230 230 230 / 50%);
		border-radius: 50px;
		transition: all 0.2s;
	}

	.pv-center-left {
		top: 10%;
		left: 0;
		justify-content: left;
		touch-action: manipulation;
	}

	.pv-spec-label {
		width: fit-content;
		flex-wrap: wrap;
		margin: 1% 3% 1% 3%;
		background: rgb(230 230 230 / 90%);
		border-radius: 15px;
		padding: 0 2% 0 2%;
		visibility: hidden;
		transition: all 0.2s;
		touch-action: manipulation;
	}

	.pv-movable {
		touch-action: manipulation;
	}

	.pv-product-message {
		max-width: 50%;
		width: fit-content;
		flex-wrap: wrap;
		text-align: center;
		background: rgb(230 230 230 / 90%);
		border-radius: 10px;
		font-size: 20;
		padding: 1% 2.5% 1% 2.5%;
		touch-action: manipulation;
		visibility: hidden;
		transition: all 0.2s;
	}

	.pv-bottom-left {
		bottom: 0;
		left: 0;
		justify-content: left;
		touch-action: manipulation;
	}

    .pv-see-more-button {
		text-align: center;
		font-family: Santral Medium;
		font-size: 255%;
		background: rgb(230 230 230 / 50%);
		touch-action: manipulation;
		pointer-events: auto;
		transition: all 0.2s;
    }

	.pv-bottom-right {
		right: 0;
		bottom: 0;
		justify-content: right;
		touch-action: manipulation;
	}

	.pv-arrow-button {
		text-align: center;
		font-family: Santral Medium;
		font-size: 255%;
		background: rgb(230 230 230 / 50%);
		touch-action: manipulation;
		pointer-events: auto;
		transition: all 0.2s;
	}
	
	.pv-button-pointerdown {
		background: rgb(230 230 230 / 90%);
	}

	.pv-frame-container {
	    position: absolute;
		top: 0;
		width:100%;
	    height:100%;
	    background-color: #ec9696;
		box-sizing: border-box;
		border-style: inset;
		border: 1px solid #80808082;
		border-radius: 10px;
		touch-action: manipulation;
	    z-index: 1;
	  }
	
	    .pv-frame-container:hover {
			touch-action: manipulation;
		    cursor: -moz-zoom-out; 
		    cursor: -webkit-zoom-out; 
		    cursor: zoom-out;
	    }
	
	.pv-frame {
	    position: relative;
		width:100%;
	    height:100%;
		margin: auto;
		margin-top: 0%;
	    overflow-x: auto;
	    overflow-y: auto;
	    background-color: white;
		box-sizing: border-box;
		border-style: inset;
		border: 1px solid #80808082;
		border-radius: 10px;
		touch-action: manipulation;
	    z-index: 1;
	}

	.pv-frame img {
		touch-action: manipulation;
	}

	.pv-product-image-container {
		display: flex;
        position: absolute;
        top: 0px;
        height: 100%;
        width: 100%;
        scroll-snap-type: x mandatory;
        overflow: scroll;
		box-sizing: border-box;
		border-style: inset;
		border: 1px solid #80808082;
		border-radius: 10px;
		touch-action: manipulation;
        transition: none;
	}
	
	    .pv-product-image-container:hover {
			touch-action: manipulation;
		    cursor: -moz-zoom-in; 
		    cursor: -webkit-zoom-in; 
		    cursor: zoom-in;
	    }

	.pv-product-image {
		position: absolute;
		top: 0px;
		height: 100%;
		width: 100%;
		scroll-snap-align: start;
		scroll-snap-stop: always;
		object-fit: contain;
		object-position: 50% 50%;
		touch-action: manipulation;
		-webkit-user-drag: none;
		-webkit-touch-callout: none;
	}
	
	.pv-product-image-2 {
	    transform: translateX(100%);
	}
	
	.pv-product-image-3 {
	    transform: translateX(200%);
	}
	
	.pv-product-image-4 {
	    transform: translateX(300%);
	}
	
	.pv-product-image-5 {
	    transform: translateX(400%);
	}
	
	.pv-product-image-6 {
	    transform: translateX(500%);
	}
	
	.pv-product-image-7 {
	    transform: translateX(600%);
	}
	
	.pv-product-image-8 {
	    transform: translateX(700%);
	}
	
	.pv-product-image-9 {
	    transform: translateX(800%);
	}
	
	.pv-product-image-10 {
	    transform: translateX(900%);
	}
	
	
	.pv-product-image-11 {
	    transform: translateX(1000%);
	}
	
	
	.pv-product-image-12 {
	    transform: translateX(1100%);
	}
	
	
	.pv-product-image-13 {
	    transform: translateX(1200%);
	}
	
	
	.pv-product-image-14 {
	    transform: translateX(1300%);
	}
	
	
	.pv-product-image-15 {
	    transform: translateX(1400%);
	}
	
	.pv-product-image-16 {
	    transform: translateX(1500%);
	}
	
	.pv-product-image-17 {
	    transform: translateX(1600%);
	}
	
	.pv-product-image-18 {
	    transform: translateX(1700%);
	}
	
	.pv-product-image-19 {
	    transform: translateX(1800%);
	}
	
	.pv-product-image-20 {
	    transform: translateX(1900%);
	}

	.pv-icon-carousel {
	    position: relative;
	    display: flex;
		flex-direction: column;
	    justify-content: space-between;
		min-width: 300px;
		max-width: 600px;
	    width: 100%;
		top: 0px;
		margin-left: auto;
		margin-right: auto;
		scroll-behavior: smooth;
	    overflow: hidden;
		touch-action: manipulation;
	    z-index: 1;
	}
	
	.pv-icon-container {
		position: relative;
		display: flex;
		column-gap: 1.5%;
		width: 100%;
		padding: 0.75%;
		padding-top: 1.5%;
		padding-bottom: 1.5%;
		box-sizing: border-box;
		overflow-y: hidden;
		overflow-x: scroll;
		scroll-behavior: smooth;
		touch-action: manipulation;
	}
	
	.pv-icon {
	    position: relative;
		border: none;
		touch-action: manipulation;
	}
	
	.pv-icon img {
		height: 100%;
		width: 100%;
		max-width: 20vmin;
		max-height: 20vmin;
		border-radius: 10px;
		object-fit: cover;
		object-position: 50% 50%;
		touch-action: manipulation;
	}
		    
	.pv-icon:hover {
		cursor: pointer;
		touch-action: manipulation;
	}
	
	.pv-icon:hover .image-shadow {
		background-color: rgb(0 0 0 / 10%);
		touch-action: manipulation;
	}
	
	.pv-icon-selected::after {
		content: "";
		position: absolute;
		top: -3px;
		left: -3px;
		height: calc(100% + 6px);
		width: calc(100% + 6px);
		box-sizing: border-box;
		border: 2px solid gray;
		border-radius: 12px;
		touch-action: manipulation;
	}

	.pv-hide-webkit-scrollbar::-webkit-scrollbar {
		 /*Chrome, Safari, Edge*/
		touch-action: manipulation;
		display: none;
	}

	.pv-hide {
		touch-action: manipulation;
		visibility: hidden;
	}
