.cta-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1.4vw;
    font-family: "Sofia Pro", sans-serif;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: none;
    text-decoration: none;
    color: #000;
    gap: 15px;
	padding-top: 40px;
}

/* The SVG Arrow via CSS */
.arrow-icon {
    display: inline-block;
    width: 30px; /* Length of your arrow */
    height: 12px;
    /* This is your SVG encoded for CSS */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12' fill='none'%3E%3Cpath d='M0 6H38M38 6L33 1M38 6L33 11' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Underline logic */
.cta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.4s ease;
}

/* Hover Effects */
.cta-link:hover{
	color: #A5A5A5;
}
.cta-link:hover .arrow-icon {
    transform: translateX(10px);
}

.cta-link:hover::after {
    width: calc(100% - 48px); /* Adjust based on arrow width + gap */
}
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: "Sofia Pro", sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;

    transition: color 0.3s ease;
}

.nav-link__arrow {
    display: inline-block;
    width: 30px;
    height: 12px;
    flex: 0 0 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* left arrow */
.nav-link--back .nav-link__arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12' fill='none'%3E%3Cpath d='M40 6H2M2 6L7 1M2 6L7 11' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 45px;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: #A5A5A5 !important;
}

.nav-link--back:hover .nav-link__arrow {
    transform: translateX(-8px);
}

.nav-link:hover::after {
    width: calc(100% - 45px);
}

@media (max-width: 767px) {
    .nav-link {
        font-size: 16px;
        gap: 12px;
        letter-spacing: 1px;
    }

    .nav-link__arrow {
        width: 24px;
        flex-basis: 24px;
    }

    .nav-link::after {
        display: none;
    }
}
@media (max-width: 767px) {
	.cta-link{
		font-size: 5vw;
		padding-top: 10px;
	}
	.cta-link::after {
		height: 0px;
	}
}


/* =========================
   GLOBAL LOGO (TEXT)
========================= */

.site-logo {
    display: block;
}

.site-logo a {
    display: inline-block;

    font-family: "Italiana", serif;
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #000;
    text-decoration: none;

    transition: opacity 0.25s ease;
}

.site-logo a:hover {
    opacity: 0.6;
	color: #A5A5A5 !important;
}

/* =========================
   CONTEXT ADJUSTMENTS
========================= */

/* cart / checkout spacing */
.cart-top .site-logo,
.checkout-top-logo .site-logo {
    margin-bottom: 30px;
}

/* empty cart */
.my-empty-cart .site-logo {
    margin-bottom: 34px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .site-logo a {
        font-size: 21wv;
        letter-spacing: 0.05em;
    }

    .cart-top .site-logo,
    .checkout-top-logo .site-logo,
    .my-empty-cart .site-logo {
        margin-bottom: 22px;
        text-align: center;
        width: 100%;
    }
}