
/* ============================= */
/* ALTANZ PRODUCT OPTIONS (FINAL CLEAN) */
/* ============================= */

/* CONTAINER */
.altanz-options {
    margin: 24px 0;
}

/* ROW STRUCTURE */

.altanz-option-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 14px;
    padding: 6px 0;
}

.altanz-option-row + .altanz-option-row {
    margin-top: 6px;
}


/* ICONS */
.altanz-icon-personalisation-svg,
.altanz-icon-giftwrap-svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #6e6e6e;
    stroke-width: 1.4;
    opacity: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.altanz-option-row svg {
    stroke: #6e6e6e;
}

.altanz-option-row:hover svg {
    opacity: 1;
    stroke: #0f2a44;
}

/* TITLE */
.altanz-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #2c2c2c;
    min-width: 0; /* 🔥 IMPORTANT prevents overflow */
}


/* REMOVE ANY OLD POSITION HACKS */
.altanz-text {
    position: static;
    white-space: nowrap;
}

/* PRICE */
.altanz-price {
    font-size: 13px;
    color: #7a8088;
    margin-right: 16px;
    white-space: nowrap;
}

.altanz-option-row .amount {
    color: #8a8f98 !important;
    font-weight: 400 !important;
}

/* BUTTON */
.altanz-btn {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 14px;
    height: 28px;

    border: 1px solid #cfcfcf;
    background: #fff;
    color: #1f2a44;

    border-radius: 3px;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}

.altanz-btn:hover {
    background: #0a1f44;
    color: #fff;
    border-color: #0a1f44;
}

/* OPTIONAL: SLIGHT HOVER FEEDBACK */
.altanz-option-row:hover {
    opacity: 0.95;
}

/* ============================= */
/* SELECTED TEXT (SECOND LINE) */
/* ============================= */

.altanz-selected {
    grid-column: 1 / -1;
    margin-top: 2px;
}

.altanz-inline-text {
    font-size: 13px;
    color: #777;
    letter-spacing: 0.2px;
    margin-top: 2px;
    line-height: 1.4;
}

/* ============================= */
/* ACTION ICONS */
/* ============================= */

.altanz-row-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-self: end;
}

.altanz-row-actions span {
    display: inline-flex;
    cursor: pointer;
}

.altanz-row-actions svg {
    opacity: 0.4;
    transition: all 0.2s ease;
}

.altanz-row-actions span:hover svg {
    opacity: 0.8;
    transform: scale(1.05);
}


