/* ==============================================
   ONE PRODUCT ATTRIBUTES - BASE STYLES
   ============================================== */
.oe-product-attributes {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ==============================================
   ATTRIBUTE GROUP
   ============================================== */
.oe-attr-group {
    display: flex;
}

.oe-attr-group.label-top {
    flex-direction: column;
}

.oe-attr-group.label-left {
    flex-direction: row;
    align-items: center;
}

.oe-attr-group.label-inline {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

/* ==============================================
   LABEL
   ============================================== */
.oe-attr-label {
    font-weight: 600;
    color: #2d5f4f;
}

.oe-attr-group.label-left .oe-attr-label {
    min-width: 120px;
    flex-shrink: 0;
}

/* ==============================================
   OPTIONS CONTAINER
   ============================================== */
.oe-attr-options {
    flex: 1;
}

/* ==============================================
   PRICE DISPLAY
   ============================================== */
.oe-attr-price-wrapper {
    margin-top: 25px;
}

.oe-attr-price {
    font-size: 28px;
    font-weight: bold;
    color: #2d5f4f;
    line-height: 1.4;
}

.oe-attr-price .amount {
    font-weight: bold;
}

.oe-attr-price del {
    color: #999;
    font-size: 22px;
    font-weight: normal;
    margin-right: 10px;
    text-decoration: line-through;
}

.oe-attr-price ins {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

.oe-attr-price .woocommerce-Price-currencySymbol {
    font-size: 0.85em;
}

/* ==============================================
   BUTTONS LAYOUT
   ============================================== */
.oe-attr-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.oe-attr-button {
    padding: 15px 40px;
    background-color: #f5f1e8;
    color: #2d5f4f;
    border: 3px solid #d4a574;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-align: center;
    white-space: nowrap;
}

.oe-attr-button:hover {
    background-color: #e8dfc9;
    border-color: #c49860;
    transform: translateY(-2px);
}

.oe-attr-button.selected {
    background-color: #f5f1e8;
    border-color: #d4a574;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.oe-attr-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ==============================================
   DROPDOWN LAYOUT
   ============================================== */
.oe-attr-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.oe-attr-select:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.oe-attr-select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .oe-product-attributes {
        gap: 20px;
    }

    .oe-attr-group.label-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .oe-attr-group.label-left .oe-attr-label {
        min-width: auto;
        margin-bottom: 10px;
    }

    .oe-attr-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .oe-attr-buttons {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .oe-attr-button {
        padding: 10px 25px;
        font-size: 13px;
    }

    .oe-attr-buttons {
        gap: 6px;
    }
}