.product-search-page .page-title {
    color: #000;
    text-align: center;
    font-family: "Roboto", serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.product-search-page .page-sub-title {
    color: #000;
    text-align: center;
    font-family: "Roboto", serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.product-search-page .page-description {
    color: #333;
    text-align: center;
    font-family: "Oxygen", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 5px;
}

.product-search-page .search-container {
    max-width: 800px;
    margin: auto;
}

/* Grid Layout */
.product-search-page .perfume-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


.product-search-page .product-img-avatar {
    width: 50px;
    height: 100%;
}

.product-search-page .how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-search-page .steps-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
}

/* Step Card */
.product-search-page .step-card {
    border-radius: 10px;
    border: 2px solid #EAE7EC;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 500px;
    margin: 24px auto;
    background: white;
    box-shadow: none;
    overflow: visible;
    width: 100%;
}

/* Step Number Circle */
.product-search-page .step-number {
    background-color: #59106F;
    color: #FFF;
    font-family: Oxygen, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Title */
.product-search-page .step-title {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 15px;
}

/* Subtitle */
.product-search-page .step-subtitle {
    color: #000;
    font-family: Oxygen, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 5px;
}

/* Large Emoji */
.product-search-page .emoji-large {
    font-size: 48px;
    line-height: normal;
}

/* ✅ Responsive Mobile Adjustments */
@media (max-width: 600px) {
    .product-search-page .step-card {
        padding: 10px;
        margin: 12px auto;
    }
}

/* Full Card */
.product-search-page .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    text-align: center;
    border-radius: 12px;
    box-shadow: none;
    background: #fff;
    gap: 10px;
}

/* Image Container (Same Height for All) */
.product-search-page .product-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

/* Image */
.product-search-page .product-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 12px;
}

/* Title Container */
.product-search-page .product-title-container {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
}

.product-search-page .product-title {
    color: #333;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* ALLOWS TWO LINES */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-height: 40px; /* Makes sure text stays in two lines */
    line-height: 1.2em;
}

/* Button Container */
.product-search-page .product-button-container {
    width: 100%;
}

.product-search-page .product-button {
    background: #8F2BDB !important;
    color: white;
    font-weight: bold;
    text-transform: none;
    border-radius: 8px;
    padding: 8px 12px;
}

/* Main Container */
.product-search-page .fragrance-container {
    display: flex;
    flex-direction: column;
}

/* Header Section (Default Desktop Layout) */
.product-search-page .fragrance-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Image */
.product-search-page .fragrance-image {
    width: 100px;
    height: auto;
    border-radius: 8px;
    align-self: start;
}

/* Placeholder if No Image */
.product-search-page .placeholder-container {
    width: 80px;
    height: 80px;
    background: #f3f3f3;
}

/* Title */
.product-search-page .fragrance-title {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

/* Description */
.product-search-page .fragrance-description {
    color: #333;
    font-family: Oxygen, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    transition: max-height 0.3s ease-in-out;
}

/* Expanded Description */
.product-search-page .fragrance-description.expanded {
    max-height: none;
}

.product-search-page .container-scroll .text-purple-l {
    color: #8F2BDB;
    margin-bottom: 4px;
}

/* Show More Button */
.product-search-page .show-more {
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin-top: 4px;
    font-weight: 600;
}

/* Notes Container */
.product-search-page .notes-container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Note Card */
.product-search-page .note-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background: white;
    position: relative;
    overflow: visible;
    box-shadow: none;
    text-align: center;
    width: 100%;
}

/* Note Icon (Above Content) - Default for Desktop */
.product-search-page .note-icon {
    width: 40px;
    height: 40px;
    background: #EAE7EC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* SVG Image */
.product-search-page .note-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Note Content */
.product-search-page .note-content {
    flex: 1;
}

/* Note Title */
.product-search-page .note-title {
    color: #000;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* Note Description */
.product-search-page .note-description {
    color: #333;
    font-family: Oxygen, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.product-search-page .note-icon.mobile {
    display: none;
}

.product-search-page .note-icon.desktop {
    position: absolute;
    top: -24px;
}

/* ✅ Responsive Mobile Adjustments */
@media (max-width: 600px) {
    .product-search-page .notes-container {
        flex-direction: column;
        gap: 12px;
    }
    /* Mobile: Notes Layout */
    .product-search-page .note-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 12px;
    }

    /* Mobile: Move Icon Inside */
    .product-search-page .note-icon.desktop {
        display: none; /* Hide desktop version */
    }

    .product-search-page .note-icon.mobile {
        display: flex; /* Show only on mobile */
        margin-bottom: 0;
        margin-right: 12px;
    }
}