.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-top: 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: Nunito;
    font-size: 16px;
    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://aurum.local/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-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%;
    display: flex;
    justify-content: space-between;
    column-gap: min(2%, 20px);
    width: 96%;
    overflow: hidden;
}

.new-arrivals-category {
    position: relative;
    padding-bottom: 42px;
    min-height: 250px;
    width: 33.33333333333%;
    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: min(2%, 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: 4px;
    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: Montserrat;
    font-size: 16px;
    font-weight: 500;
}

.services-offers-title {
    margin-top: 0px;
}

.services-item-caption {
    text-align: center;
    font-family: Nunito;
    font-size: 12px;
}

.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: 10px;
    }
    
    .product-new-arrival-caption {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .header {
        position: fixed;
        width: 100%;
        z-index: 3;
    }
    
    .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;
    }

    .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: 20px;
        background: none;
        background-color: rgb(240, 240, 244);
    }

    .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*/
        width: 100%;
        padding-bottom: 10px;
        border-radius: 10px;
    }

    .new-arrivals-item-header {
        flex-direction: row;
        column-gap: 4px;
        margin-top: 8px;
        margin-bottom: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .new-arrivals-item-header-title {
        color: rgb(60, 60, 60);
        font-size: 24px;
    }

    .new-arrivals-item-text-wrap {
        position: relative;
        top: 1px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .new-arrivals-item-text {
        padding: 4px 5px 0px 6px;
        line-height: 12px;
        color: rgb(100, 100, 100);
        font-family: Nunito;
        font-size: 11px;
        border-radius: 10px;
    }

    .new-arrivals-link-arrow {
        filter: brightness(70%);
    }

    .new-arrivals-item-wrap {
        padding: 0px 10px 0px 10px;
    }
        
    .new-arrivals-item {
        min-width: calc(40% - 10px);
        padding-top: calc(40% - 10px);
    }

    .new-arrivals-image {
        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;
    }
    
    .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-header-caption {
        padding: 0px 20px 0px 20px;
        color: rgb(100, 100, 100);
    }
    
    .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;
    }

    .services-item-caption {
        margin: auto;
        width: 90%;
        color: rgb(100, 100, 100);
        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;
    }
}