/* Premium Editorial Header */
.profile-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -2px;
    /* Tight tracking for modern look */
    line-height: 1;
    color: #D69679;
    margin-bottom: 8px;
}

/* Sophisticated Sub-header */
.section-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Wide tracking for elegance */
    color: #7A5C4F;
    opacity: 0.8;
}

/* Price Serif Accent (Optional: Add a Serif font in HTML first) */
.price-current {
    font-family: 'Times New Roman', serif;
    /* Or any serif like 'Cormorant Garamond' */
    font-style: italic;
    font-size: 42px;
    font-weight: 400;
    color: #D69679;
}

/* Glassmorphic Modal */
.modal {
    background: rgba(255, 255, 255, 0.7);
    /* High transparency */
    backdrop-filter: blur(20px) saturate(160%);
    /* The glass effect */
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Soft white border highlight */
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(74, 55, 40, 0.08);
}

/* Glassmorphic Link Items */
.link-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 150, 121, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-item:hover {
    background: #D69679;
    border-color: #D69679;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(214, 150, 121, 0.2);
}

/* Rounded Squircle Buttons */
.btn-primary {
    border-radius: 100px;
    /* Fully rounded pill shape */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 18px;
    background: linear-gradient(135deg, #D69679 0%, #C47E5E 100%);
}

/* Refined Form Inputs */
input[type="email"] {
    background: rgba(240, 237, 232, 0.5);
    border-radius: 100px;
    border: 1px solid transparent;
    transition: border 0.3s ease;
}

input[type="email"]:focus {
    border: 1px solid #D69679;
    background: #ffffff;
}

/* Refined Form Inputs */
.promo-input {
    background: rgba(240, 237, 232, 0.5);
    border-radius: 100px 0 0 100px;
    border: 1px solid transparent;
    transition: border 0.3s ease;
}

.promo-input:focus {
    border: 1px solid #D69679;
    background: #ffffff;
}

/* Refined Form Inputs */
.promo-button {
    background: white;
    border-radius: 0 100px 100px 0;
    border: 1px solid transparent;
    transition: border 0.3s ease;
}

.promo-button:focus {
    border: 1px solid #D69679;
    background: #ffffff;
}